aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-elf/group12.ld
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-elf/group12.ld')
-rw-r--r--ld/testsuite/ld-elf/group12.ld14
1 files changed, 14 insertions, 0 deletions
diff --git a/ld/testsuite/ld-elf/group12.ld b/ld/testsuite/ld-elf/group12.ld
new file mode 100644
index 0000000..4a36ee5
--- /dev/null
+++ b/ld/testsuite/ld-elf/group12.ld
@@ -0,0 +1,14 @@
+FORCE_GROUP_ALLOCATION
+
+PHDRS
+{
+ header PT_PHDR PHDRS ;
+ image PT_LOAD PHDRS;
+}
+
+SECTIONS
+{
+ . = 0x1000;
+ .text : { *(.text) *(.rodata.brlt) } :image :header
+ /DISCARD/ : { *(.dropme) *(.reginfo) *(.MIPS.abiflags) }
+}