summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts/script.t
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-scripts/script.t')
-rw-r--r--ld/testsuite/ld-scripts/script.t16
1 files changed, 0 insertions, 16 deletions
diff --git a/ld/testsuite/ld-scripts/script.t b/ld/testsuite/ld-scripts/script.t
deleted file mode 100644
index ee7a48a9f60..00000000000
--- a/ld/testsuite/ld-scripts/script.t
+++ /dev/null
@@ -1,16 +0,0 @@
-SECTIONS
-{
- .text 0x100 : {
- text_start = .;
- *(.text)
- *(.pr)
- text_end = .;
- }
- . = 0x1000;
- .data : {
- data_start = .;
- *(.data)
- *(.rw)
- data_end = .;
- }
-}