This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Fix problem where orphan section is treated as a KEEP section.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=397b8d2a9fb6651924c311f41b90cabeb3fc3ae9

commit 397b8d2a9fb6651924c311f41b90cabeb3fc3ae9
Author: Cary Coutant <ccoutant@gmail.com>
Date:   Thu Dec 1 19:54:05 2016 -0800

    Fix problem where orphan section is treated as a KEEP section.
    
    gold/
    	PR gold/20717
    	* script-sections.cc (Script_sections): Set *keep to false when
    	no match.

Diff:
---
 gold/ChangeLog          | 6 ++++++
 gold/script-sections.cc | 1 +
 2 files changed, 7 insertions(+)

diff --git a/gold/ChangeLog b/gold/ChangeLog
index ea7b9f8..913ad08 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,5 +1,11 @@
 2016-12-01  Cary Coutant  <ccoutant@gmail.com>
 
+	PR gold/20717
+	* script-sections.cc (Script_sections): Set *keep to false when
+	no match.
+
+2016-12-01  Cary Coutant  <ccoutant@gmail.com>
+
 	PR gold/20834
 	* target.h (Target::default_text_segment_address): Bump default
 	start address up to ABI page size.
diff --git a/gold/script-sections.cc b/gold/script-sections.cc
index bf25391..f35ecc1 100644
--- a/gold/script-sections.cc
+++ b/gold/script-sections.cc
@@ -3538,6 +3538,7 @@ Script_sections::output_section_name(
 
   *output_section_slot = NULL;
   *psection_type = Script_sections::ST_NONE;
+  *keep = false;
 
   return section_name;
 }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]