aboutsummaryrefslogtreecommitdiff
path: root/gold/testsuite/script_test_12b.c
diff options
context:
space:
mode:
authorCary Coutant <ccoutant@gmail.com>2016-06-23 09:45:25 -0700
committerCary Coutant <ccoutant@gmail.com>2016-06-23 09:45:25 -0700
commit3ca25b560af813ca576821b500a0f0885829b500 (patch)
tree6c6b394becd0a8da3259ccb807460f420fce7220 /gold/testsuite/script_test_12b.c
parent2ec060b71cc1cddb506d3a38475aadc184e25985 (diff)
downloadfsf-binutils-gdb-3ca25b560af813ca576821b500a0f0885829b500.zip
fsf-binutils-gdb-3ca25b560af813ca576821b500a0f0885829b500.tar.gz
fsf-binutils-gdb-3ca25b560af813ca576821b500a0f0885829b500.tar.bz2
Fix bug with grouping sections.
The fix for PR 15370 did not correctly check all patterns in a group, but instead threw all unassigned sections into the group. This patch fixes that. 2016-06-23 Cary Coutant <ccoutant@gmail.com> Igor Kudrin <ikudrin@accesssoftek.com> gold/ PR gold/15370 * script-sections.cc (Output_section_element_input::set_section_addresses): Keep bin_count separate from input_pattern_count. * testsuite/script_test_12.t: Add another section .x4. * testsuite/script_test_12i.t: Likewise. * testsuite/script_test_12a.c: Likewise. * testsuite/script_test_12b.c: Likewise.
Diffstat (limited to 'gold/testsuite/script_test_12b.c')
-rw-r--r--gold/testsuite/script_test_12b.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gold/testsuite/script_test_12b.c b/gold/testsuite/script_test_12b.c
index a69866e..e31f73d 100644
--- a/gold/testsuite/script_test_12b.c
+++ b/gold/testsuite/script_test_12b.c
@@ -1,3 +1,4 @@
int b1[] __attribute((section(".x1"))) = { 0x85, 0x86, 0x87, 0x88 };
int b2[] __attribute((section(".x2"))) = { 0x95, 0x96, 0x97, 0x98 };
int b3[] __attribute((section(".x3"))) = { 0xa5, 0xa6, 0xa7, 0xa8 };
+int b4[] __attribute((section(".x4"))) = { 0xff, 0xff, 0xff, 0xff };