summaryrefslogtreecommitdiff
path: root/sysdeps/powerpc/powerpc64
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-01-08 05:47:47 +0000
committerUlrich Drepper <drepper@redhat.com>2005-01-08 05:47:47 +0000
commit70cd1f971ba91574980d707a1bd7da29a970158c (patch)
treed85c7fcd5dfb7d34a0d4cfc2487fe1eab436deb7 /sysdeps/powerpc/powerpc64
parent85555eeb7b4c2cee0714c8860caa4f5851b9045b (diff)
Update.
* sysdeps/powerpc/powerpc32/dl-machine.c (__elf_machine_runtime_setup): If profile != 0 does not anymore mean GLRO(dl_profile) != NULL. * sysdeps/powerpc/powerpc32/bits/link.h: Fix types of some fields in the register and result structures. * sysdeps/powerpc/powerpc64/bits/link.h: Fix types of some fields in the 32-bit register and result structures.
Diffstat (limited to 'sysdeps/powerpc/powerpc64')
-rw-r--r--sysdeps/powerpc/powerpc64/bits/link.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/powerpc/powerpc64/bits/link.h b/sysdeps/powerpc/powerpc64/bits/link.h
index 227c7f9a4f..34e9a60726 100644
--- a/sysdeps/powerpc/powerpc64/bits/link.h
+++ b/sysdeps/powerpc/powerpc64/bits/link.h
@@ -26,18 +26,18 @@
/* Registers for entry into PLT on PPC32. */
typedef struct La_ppc32_regs
{
- uint64_t lr_reg[8];
+ uint32_t lr_reg[8];
double lr_fp[8];
uint32_t lr_vreg[12][4];
- uint64_t lr_r1;
- uint64_t lr_lr;
+ uint32_t lr_r1;
+ uint32_t lr_lr;
} La_ppc32_regs;
/* Return values for calls from PLT on PPC32. */
typedef struct La_ppc32_retval
{
- uint64_t lrv_r3;
- uint64_t lrv_r4;
+ uint32_t lrv_r3;
+ uint32_t lrv_r4;
double lrv_fp[8];
uint32_t lrv_v2[4];
} La_ppc32_retval;