aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-mips-elf/compact-eh.ld
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-mips-elf/compact-eh.ld')
-rw-r--r--ld/testsuite/ld-mips-elf/compact-eh.ld15
1 files changed, 15 insertions, 0 deletions
diff --git a/ld/testsuite/ld-mips-elf/compact-eh.ld b/ld/testsuite/ld-mips-elf/compact-eh.ld
new file mode 100644
index 0000000..e395fa6
--- /dev/null
+++ b/ld/testsuite/ld-mips-elf/compact-eh.ld
@@ -0,0 +1,15 @@
+ENTRY (__start)
+SECTIONS
+{
+ .text :
+ {
+ *(.text .text.*)
+ *(.gnu_extab .gnu_extab.*)
+ }
+ .eh_frame_hdr :
+ {
+ KEEP (*(.eh_frame_hdr))
+ *(.eh_frame_entry .eh_frame_entry.*)
+ }
+ .data : {*(.data) }
+}