From: H.J. Lu Date: Thu, 6 Sep 2012 04:46:18 +0000 (+0000) Subject: Add .got.plt output section statement X-Git-Tag: sid-snapshot-20121001~226 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32ed457365212f981a588e211655960828944795;p=thirdparty%2Fbinutils-gdb.git Add .got.plt output section statement * testsuite/script_test_3.t: Add .got.plt output section statement. * testsuite/script_test_4.t: Likewise. --- diff --git a/gold/ChangeLog b/gold/ChangeLog index c2fe2cd9d4f..320f8326cca 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,9 @@ +2012-09-05 H.J. Lu + + * testsuite/script_test_3.t: Add .got.plt output section + statement. + * testsuite/script_test_4.t: Likewise. + 2012-09-05 Alan Modra * powerpc.cc (Powerpc_relocate_functions): Upcase enum values, diff --git a/gold/testsuite/script_test_3.t b/gold/testsuite/script_test_3.t index 9c75194c49e..accd0559db7 100644 --- a/gold/testsuite/script_test_3.t +++ b/gold/testsuite/script_test_3.t @@ -36,6 +36,7 @@ SECTIONS .dynamic : { *(.dynamic) } :data :dynamic .data : { *(.data) } :data .got : { *(.got .toc) } + .got.plt : { *(.got.plt) } .tdata : { *(.tdata*) } :data :tls .tbss : { *(.tbss*) } :data :tls . += 0x100000; diff --git a/gold/testsuite/script_test_4.t b/gold/testsuite/script_test_4.t index f5569c5e2d7..3ba5e93807d 100644 --- a/gold/testsuite/script_test_4.t +++ b/gold/testsuite/script_test_4.t @@ -38,6 +38,7 @@ SECTIONS .dynamic : { *(.dynamic) } .data : { *(.data) } .got : { *(.got .toc) } + .got.plt : { *(.got.plt) } . += 0x100000; . = ALIGN(0x100); .bss : { *(.bss) }