diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-09-09 19:57:06 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-09-09 19:57:06 +0000 |
commit | 6695e4b3d3e7a3621b006a7571dfdfae8351b970 (patch) | |
tree | 24e25255ceebab9eb558303ee0380691a1a3d7c7 /gold | |
parent | a2d1e0280113424781f2e50bd2c97cc2ef3d237e (diff) | |
download | gdb-6695e4b3d3e7a3621b006a7571dfdfae8351b970.zip gdb-6695e4b3d3e7a3621b006a7571dfdfae8351b970.tar.gz gdb-6695e4b3d3e7a3621b006a7571dfdfae8351b970.tar.bz2 |
Support building gold with gcc 4.2/4.3.
2010-09-09 H.J. Lu <hongjiu.lu@intel.com>
PR gold/11996
* object.cc (Sized_relobj::do_finalize_local_symbols): Remove
"This::" to work around a bug in gcc 4.2.
* testsuite/ifuncmain7.c (foo_ifunc): Add __attribute__ ((used)).
Diffstat (limited to 'gold')
-rw-r--r-- | gold/ChangeLog | 8 | ||||
-rw-r--r-- | gold/object.cc | 2 | ||||
-rw-r--r-- | gold/testsuite/ifuncmain7.c | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index 88d7942..fa663e9 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,11 @@ +2010-09-09 H.J. Lu <hongjiu.lu@intel.com> + + PR gold/11996 + * object.cc (Sized_relobj::do_finalize_local_symbols): Remove + "This::" to work around a bug in gcc 4.2. + + * testsuite/ifuncmain7.c (foo_ifunc): Add __attribute__ ((used)). + 2010-09-09 Rafael Espindola <espindola@google.com> * layout.cc (Layout::attach_allocated_section_to_segment): Don't put diff --git a/gold/object.cc b/gold/object.cc index 7bd35f3..bde89f6 100644 --- a/gold/object.cc +++ b/gold/object.cc @@ -2074,7 +2074,7 @@ Sized_relobj<size, big_endian>::do_finalize_local_symbols(unsigned int index, { Symbol_value<size>* lv = &this->local_values_[i]; - This::Compute_final_local_value_status cflv_status = + Compute_final_local_value_status cflv_status = this->compute_final_local_value_internal(i, lv, lv, relocatable, out_sections, out_offsets, symtab); diff --git a/gold/testsuite/ifuncmain7.c b/gold/testsuite/ifuncmain7.c index f6608ea..c2524aa 100644 --- a/gold/testsuite/ifuncmain7.c +++ b/gold/testsuite/ifuncmain7.c @@ -15,7 +15,7 @@ one (void) return -30; } -static void * foo_ifunc (void) __asm__ ("foo"); +static void * __attribute__ ((used)) foo_ifunc (void) __asm__ ("foo"); __asm__(".type foo, %gnu_indirect_function"); static void * |