summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts/phdrs.t
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-scripts/phdrs.t')
-rw-r--r--ld/testsuite/ld-scripts/phdrs.t14
1 files changed, 0 insertions, 14 deletions
diff --git a/ld/testsuite/ld-scripts/phdrs.t b/ld/testsuite/ld-scripts/phdrs.t
deleted file mode 100644
index 8f710e23fdc..00000000000
--- a/ld/testsuite/ld-scripts/phdrs.t
+++ /dev/null
@@ -1,14 +0,0 @@
-PHDRS
-{
- header PT_PHDR PHDRS ;
- text PT_LOAD FILEHDR PHDRS ;
- data PT_LOAD ;
-}
-
-SECTIONS
-{
- . = 0x80000 + SIZEOF_HEADERS;
- .text : { *(.text) } :text
- .data : { *(.data) } :data
- /DISCARD/ : { *(.reginfo) }
-}