diff options
Diffstat (limited to 'ld/testsuite/ld-scripts/cross3.t')
-rw-r--r-- | ld/testsuite/ld-scripts/cross3.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/testsuite/ld-scripts/cross3.t b/ld/testsuite/ld-scripts/cross3.t index 5e32bb2..e48b947 100644 --- a/ld/testsuite/ld-scripts/cross3.t +++ b/ld/testsuite/ld-scripts/cross3.t @@ -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/ : { *(*) } } |