diff options
Diffstat (limited to 'ld/testsuite/ld-mips-elf/eh-frame1.ld')
-rw-r--r-- | ld/testsuite/ld-mips-elf/eh-frame1.ld | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ld/testsuite/ld-mips-elf/eh-frame1.ld b/ld/testsuite/ld-mips-elf/eh-frame1.ld new file mode 100644 index 0000000..910a84e --- /dev/null +++ b/ld/testsuite/ld-mips-elf/eh-frame1.ld @@ -0,0 +1,18 @@ +SECTIONS +{ + . = 0x10000; + .dynamic : { *(.dynamic) } + .hash : { *(.hash) } + .dynsym : { *(.dynsym) } + .dynstr : { *(.dynstr) } + .rel.dyn : { *(.rel.dyn) } + + . = 0x20000; + .text : { *(.text) } + + . = 0x30000; + .eh_frame : { *(.eh_frame) } + .got : { *(.got) } + + /DISCARD/ : { *(*) } +} |