aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-mips-elf/mips-hilo.ld
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-mips-elf/mips-hilo.ld')
-rw-r--r--ld/testsuite/ld-mips-elf/mips-hilo.ld13
1 files changed, 13 insertions, 0 deletions
diff --git a/ld/testsuite/ld-mips-elf/mips-hilo.ld b/ld/testsuite/ld-mips-elf/mips-hilo.ld
new file mode 100644
index 0000000..ce13411
--- /dev/null
+++ b/ld/testsuite/ld-mips-elf/mips-hilo.ld
@@ -0,0 +1,13 @@
+SECTIONS
+{
+ . = 0x0500000;
+ .text : { *(.text) }
+ . = 0x0654320;
+ .data : { *(.data) }
+ .sdata : { *(.sdata) }
+ .MIPS.abiflags : { *(.MIPS.abiflags) }
+ . = 0x0765430;
+ .bss : { *(.bss) *(COMMON) }
+ .sbss : { *(.scommon) *(.sbss) }
+ /DISCARD/ : { *(*) }
+}