summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2017-08-02 06:21:43 -0700
committerH.J. Lu <hjl.tools@gmail.com>2017-08-02 06:21:43 -0700
commit09da625cbc543900a1a01cb08686cb936c618846 (patch)
treeb8bc84ab186b3ceeee0a9911318beb7f8b3d28ba
parentb5b768d5acb5796144e60f18226627f0688581a9 (diff)
downloadbinutils-gdb-users/hjl/pr21884.tar.gz
Remove a redundant iself checkusers/hjl/pr21884
-rw-r--r--ld/emultempl/elf32.em8
1 files changed, 4 insertions, 4 deletions
diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em
index b2a9760a6d4..3a0404c61b6 100644
--- a/ld/emultempl/elf32.em
+++ b/ld/emultempl/elf32.em
@@ -2158,11 +2158,11 @@ gld${EMULATION_NAME}_place_orphan (asection *s,
== elf_section_data (s)->this_hdr.sh_info)
&& (os->bfd_section->flags == 0
|| ((!bfd_link_relocatable (&link_info)
- || (iself && (((elf_section_flags (s)
- ^ elf_section_flags (os->bfd_section))
- & SHF_EXCLUDE) == 0)))
+ || (((elf_section_flags (s)
+ ^ elf_section_flags (os->bfd_section))
+ & SHF_EXCLUDE) == 0))
&& ((s->flags ^ os->bfd_section->flags)
- & (SEC_LOAD | SEC_ALLOC)) == 0
+ & (SEC_LOAD | SEC_ALLOC)) == 0
&& _bfd_elf_match_sections_by_type (link_info.output_bfd,
os->bfd_section,
s->owner, s))))