summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-arm/data-only-map.ld
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-arm/data-only-map.ld')
-rw-r--r--ld/testsuite/ld-arm/data-only-map.ld16
1 files changed, 16 insertions, 0 deletions
diff --git a/ld/testsuite/ld-arm/data-only-map.ld b/ld/testsuite/ld-arm/data-only-map.ld
new file mode 100644
index 0000000..7d6ea92
--- /dev/null
+++ b/ld/testsuite/ld-arm/data-only-map.ld
@@ -0,0 +1,16 @@
+/* Script for ld testsuite */
+OUTPUT_ARCH(arm)
+ENTRY(_start)
+SECTIONS
+{
+ .text :
+ {
+ *(.text)
+ *(.after1)
+ *(.after2)
+ *(.after3)
+ *(.after4)
+ *(.after5)
+ } =0
+}
+