diff options
Diffstat (limited to 'sysdeps/powerpc/powerpc32/bits')
-rw-r--r-- | sysdeps/powerpc/powerpc32/bits/link.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/powerpc/powerpc32/bits/link.h b/sysdeps/powerpc/powerpc32/bits/link.h index 2d49c09fb4..7f44087120 100644 --- a/sysdeps/powerpc/powerpc32/bits/link.h +++ b/sysdeps/powerpc/powerpc32/bits/link.h @@ -24,18 +24,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; |