aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/arm/test-armv6m-undef.ld
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tcg/arm/test-armv6m-undef.ld')
-rw-r--r--tests/tcg/arm/test-armv6m-undef.ld21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/tcg/arm/test-armv6m-undef.ld b/tests/tcg/arm/test-armv6m-undef.ld
new file mode 100644
index 0000000000..43dbbf17d5
--- /dev/null
+++ b/tests/tcg/arm/test-armv6m-undef.ld
@@ -0,0 +1,21 @@
+ENTRY(exc_reset_thumb)
+
+SECTIONS
+{
+ . = 0x0;
+ .text : {
+ *(.text)
+ }
+ .data : {
+ *(.data)
+ }
+ .rodata : {
+ *(.rodata)
+ }
+ .bss : {
+ *(.bss)
+ }
+ /DISCARD/ : {
+ *(.ARM.attributes)
+ }
+}