diff options
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ChangeLog.alpha | 5 | ||||
-rw-r--r-- | ports/ChangeLog.ia64 | 5 | ||||
-rw-r--r-- | ports/ChangeLog.mips | 6 | ||||
-rw-r--r-- | ports/sysdeps/alpha/ldsodefs.h | 2 | ||||
-rw-r--r-- | ports/sysdeps/ia64/ldsodefs.h | 2 | ||||
-rw-r--r-- | ports/sysdeps/mips/ldsodefs.h | 6 |
6 files changed, 21 insertions, 5 deletions
diff --git a/ports/ChangeLog.alpha b/ports/ChangeLog.alpha index b09cbb8727..266f42d970 100644 --- a/ports/ChangeLog.alpha +++ b/ports/ChangeLog.alpha @@ -1,3 +1,8 @@ +2012-08-16 Carlos O'Donell <carlos_odonell@mentor.com> + + * sysdeps/alpha/ldsodefs.h (ARCH_PLTENTER_MEMBERS) + <alpha_gnu_pltenter>: struct La_alpha_regs is not const. + 2012-08-13 Richard Henderson <rth@twiddle.net> * configure.in: Don't test toolchain support for TLS or GPREL. diff --git a/ports/ChangeLog.ia64 b/ports/ChangeLog.ia64 index 8e1f0ff7d0..abc246364a 100644 --- a/ports/ChangeLog.ia64 +++ b/ports/ChangeLog.ia64 @@ -1,3 +1,8 @@ +2012-08-16 Carlos O'Donell <carlos_odonell@mentor.com> + + * sysdeps/ia64/ldsodefs.h (ARCH_PLTENTER_MEMBERS) + <ia64_gnu_pltenter>: struct La_ia64_regs is not constant. + 2012-08-14 Mike Frysinger <vapier@gentoo.org> * sysdeps/ia64/configure.in: Remove assembler-with-cpp debug check. diff --git a/ports/ChangeLog.mips b/ports/ChangeLog.mips index f8c18b3275..dfab023ee7 100644 --- a/ports/ChangeLog.mips +++ b/ports/ChangeLog.mips @@ -1,3 +1,9 @@ +2012-08-16 Carlos O'Donell <carlos_odonell@mentor.com> + + * sysdeps/mips/ldsodefs.h (ARCH_PLTENTER_MEMBERS) + <mips_o32_gnu_pltenter, mips_n32_gnu_pltenter, mips_n64_gnu_pltenter>: + struct La_mips_32_regs and struct La_mips_64_regs are not constant. + 2012-08-15 Tom de Vries <vries@codesourcery.com> Maxim Kuvyrkov <maxim@codesourcery.com> diff --git a/ports/sysdeps/alpha/ldsodefs.h b/ports/sysdeps/alpha/ldsodefs.h index 478bf237db..464e84ea39 100644 --- a/ports/sysdeps/alpha/ldsodefs.h +++ b/ports/sysdeps/alpha/ldsodefs.h @@ -26,7 +26,7 @@ struct La_alpha_retval; #define ARCH_PLTENTER_MEMBERS \ Elf64_Addr (*alpha_gnu_pltenter) (Elf64_Sym *, unsigned int, \ uintptr_t *, uintptr_t *, \ - const struct La_alpha_regs *, \ + struct La_alpha_regs *, \ unsigned int *, const char *name, \ long int *framesizep); diff --git a/ports/sysdeps/ia64/ldsodefs.h b/ports/sysdeps/ia64/ldsodefs.h index 269319e841..d5fde93836 100644 --- a/ports/sysdeps/ia64/ldsodefs.h +++ b/ports/sysdeps/ia64/ldsodefs.h @@ -26,7 +26,7 @@ struct La_ia64_retval; #define ARCH_PLTENTER_MEMBERS \ Elf64_Addr (*ia64_gnu_pltenter) (Elf64_Sym *, unsigned int, \ uintptr_t *, uintptr_t *, \ - const struct La_ia64_regs *, \ + struct La_ia64_regs *, \ unsigned int *, const char *name, \ long int *framesizep); diff --git a/ports/sysdeps/mips/ldsodefs.h b/ports/sysdeps/mips/ldsodefs.h index ab4e9ef1ec..791e61896e 100644 --- a/ports/sysdeps/mips/ldsodefs.h +++ b/ports/sysdeps/mips/ldsodefs.h @@ -29,17 +29,17 @@ struct La_mips_64_retval; #define ARCH_PLTENTER_MEMBERS \ Elf32_Addr (*mips_o32_gnu_pltenter) (Elf32_Sym *, unsigned int, \ uintptr_t *, uintptr_t *, \ - const struct La_mips_32_regs *, \ + struct La_mips_32_regs *, \ unsigned int *, const char *name, \ long int *framesizep); \ Elf32_Addr (*mips_n32_gnu_pltenter) (Elf32_Sym *, unsigned int, \ uintptr_t *, uintptr_t *, \ - const struct La_mips_64_regs *, \ + struct La_mips_64_regs *, \ unsigned int *, const char *name, \ long int *framesizep); \ Elf64_Addr (*mips_n64_gnu_pltenter) (Elf64_Sym *, unsigned int, \ uintptr_t *, uintptr_t *, \ - const struct La_mips_64_regs *, \ + struct La_mips_64_regs *, \ unsigned int *, const char *name, \ long int *framesizep); |