diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/emultempl/mipself.em | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 6f804b9..d5595c6 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2011-06-09 Nick Clifton <nickc@redhat.com> + + PR ld/12845 + * emultempl/mipself.em (mips_add_stub_section): Do not add stubs + for sections that have been removed by garbage collection. + 2011-06-08 Alan Modra <amodra@gmail.com> * ldlang.c (lang_one_common): Handle warning symbols. diff --git a/ld/emultempl/mipself.em b/ld/emultempl/mipself.em index 7a13d4d..ada0786 100644 --- a/ld/emultempl/mipself.em +++ b/ld/emultempl/mipself.em @@ -138,6 +138,11 @@ mips_add_stub_section (const char *stub_sec_name, asection *input_section, lang_output_section_statement_type *os; struct hook_stub_info info; + /* PR 12845: If the input section has been garbage collected it will + not have its output section set to *ABS*. */ + if (bfd_is_abs_section (output_section)) + return NULL; + /* Create the stub file, if we haven't already. */ if (stub_file == NULL) { |