diff options
Diffstat (limited to 'gold/testsuite')
-rw-r--r-- | gold/testsuite/script_test_12.t | 1 | ||||
-rw-r--r-- | gold/testsuite/script_test_12a.c | 1 | ||||
-rw-r--r-- | gold/testsuite/script_test_12b.c | 1 | ||||
-rw-r--r-- | gold/testsuite/script_test_12i.t | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/gold/testsuite/script_test_12.t b/gold/testsuite/script_test_12.t index d434f20..4579c58 100644 --- a/gold/testsuite/script_test_12.t +++ b/gold/testsuite/script_test_12.t @@ -57,6 +57,7 @@ SECTIONS test_array_start = .; *(.x1 .x2 .x3); test_array_end = .; + *(.x4); } .bss : { *(.bss) } diff --git a/gold/testsuite/script_test_12a.c b/gold/testsuite/script_test_12a.c index 0eed0c2..ed1be68 100644 --- a/gold/testsuite/script_test_12a.c +++ b/gold/testsuite/script_test_12a.c @@ -73,3 +73,4 @@ main(void) int a1[] __attribute((section(".x1"))) = { 0x01, 0x02, 0x03, 0x04 }; int a2[] __attribute((section(".x2"))) = { 0x11, 0x12, 0x13, 0x14}; int a3[] __attribute((section(".x3"))) = { 0x21, 0x22, 0x23, 0x24 }; +int a4[] __attribute((section(".x4"))) = { 0xff, 0xff, 0xff, 0xff }; 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 }; diff --git a/gold/testsuite/script_test_12i.t b/gold/testsuite/script_test_12i.t index 8d6183a..af19cd6 100644 --- a/gold/testsuite/script_test_12i.t +++ b/gold/testsuite/script_test_12i.t @@ -57,6 +57,7 @@ SECTIONS test_array_start = .; *(.x1) *(.x2) *(.x3) test_array_end = .; + *(.x4); } .bss : { *(.bss) } |