New NOCROSSREFS_TO tests
authorAlan Modra <amodra@gmail.com>
Thu, 21 Apr 2016 01:35:41 +0000 (11:05 +0930)
committerAlan Modra <amodra@gmail.com>
Thu, 21 Apr 2016 01:47:37 +0000 (11:17 +0930)
Fixes failures on hppa-linux and alpha-linux due to not merging
.data.* and .sdata into .data.  cross3.t modified too since it is the
template for the NOCROSSREFS_TO scripts.

* testsuite/ld-scripts/cross3.t: Add commonly used data
and text section names to output section statements.
* testsuite/ld-scripts/cross4.t: Likewise.
* testsuite/ld-scripts/cross5.t: Likewise.
* testsuite/ld-scripts/cross6.t: Likewise.
* testsuite/ld-scripts/cross7.t: Likewise.

ld/ChangeLog
ld/testsuite/ld-scripts/cross3.t
ld/testsuite/ld-scripts/cross4.t
ld/testsuite/ld-scripts/cross5.t
ld/testsuite/ld-scripts/cross6.t
ld/testsuite/ld-scripts/cross7.t

index 07209d56d674bb780e106876b5e40d457243da02..0721142d475add2045c640da2b6939515f1d2c11 100644 (file)
@@ -1,3 +1,12 @@
+2016-04-21  Alan Modra  <amodra@gmail.com>
+
+       * testsuite/ld-scripts/cross3.t: Add commonly used data
+       and text section names to output section statements.
+       * testsuite/ld-scripts/cross4.t: Likewise.
+       * testsuite/ld-scripts/cross5.t: Likewise.
+       * testsuite/ld-scripts/cross6.t: Likewise.
+       * testsuite/ld-scripts/cross7.t: Likewise.
+
 2016-04-20  H.J. Lu  <hongjiu.lu@intel.com>
 
        * ldlang.c (lang_check_relocs): New function.
index 5e32bb2fca690b2a8478b3afa652c0c9a9ac670a..e48b9479fd19b3a55ddf38b0e188b5f8a535f62a 100644 (file)
@@ -2,9 +2,9 @@ NOCROSSREFS(.nocrossrefs .text)
 
 SECTIONS
 {
-  .text : { *(.text) }
+  .text : { *(.text) *(.text.*) }
   .nocrossrefs : { *(.nocrossrefs) }
-  .data : { *(.data) *(.opd) }
+  .data : { *(.data) *(.data.*) *(.sdata) *(.opd) }
   .bss : { *(.bss) *(COMMON) }
   /DISCARD/ : { *(*) }
 }
index 7f91b817efa3dccff739f7dc62fd585d3bf9aa85..4e5d28a3656fdca02f017e99ac746621d460eabc 100644 (file)
@@ -2,9 +2,9 @@ NOCROSSREFS_TO(.data .nocrossrefs)
 
 SECTIONS
 {
-  .text : { *(.text) }
+  .text : { *(.text) *(.text.*) }
   .nocrossrefs : { *(.nocrossrefs) }
-  .data : { *(.data) *(.opd) }
+  .data : { *(.data) *(.data.*) *(.sdata) *(.opd) }
   .bss : { *(.bss) *(COMMON) }
   /DISCARD/ : { *(*) }
 }
index 43657f17b4e555be3b3dc5b183f3a5a16186079a..a581b92d3bb7f0a267e0fd3843abb7084c2ad470 100644 (file)
@@ -2,9 +2,9 @@ NOCROSSREFS_TO(.nocrossrefs .data)
 
 SECTIONS
 {
-  .text : { *(.text) }
+  .text : { *(.text) *(.text.*) }
   .nocrossrefs : { *(.nocrossrefs) }
-  .data : { *(.data) *(.opd) }
+  .data : { *(.data) *(.data.*) *(.sdata) *(.opd) }
   .bss : { *(.bss) *(COMMON) }
   /DISCARD/ : { *(*) }
 }
index 466422171ab86debcd96ee959c9426172d28efa9..0f23ca062ea04f11eddb1c041cb7a850f630073b 100644 (file)
@@ -2,8 +2,8 @@ NOCROSSREFS_TO(.text .data)
 
 SECTIONS
 {
-  .text : { *(.text) }
-  .data : { *(.data) *(.opd) }
+  .text : { *(.text) *(.text.*) }
+  .data : { *(.data) *(.data.*) *(.sdata) *(.opd) }
   .bss : { *(.bss) *(COMMON) }
   /DISCARD/ : { *(*) }
 }
index dad21031edb9b547a772c67862b26eade3b2cc0b..29173fcbf9e1d180a704886f343819b841482c83 100644 (file)
@@ -2,8 +2,8 @@ NOCROSSREFS_TO(.data .text)
 
 SECTIONS
 {
-  .text : { *(.text) }
-  .data : { *(.data) *(.opd) }
+  .text : { *(.text) *(.text.*) }
+  .data : { *(.data) *(.data.*) *(.sdata) *(.opd) }
   .bss : { *(.bss) *(COMMON) }
   /DISCARD/ : { *(*) }
 }