diff options
Diffstat (limited to 'tests/tcg/arm/test-armv6m-undef.ld')
-rw-r--r-- | tests/tcg/arm/test-armv6m-undef.ld | 21 |
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 000000000..43dbbf17d --- /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) + } +} |