aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/arm/test-armv6m-undef.ld
blob: 43dbbf17d57c64808677f98d9206b85dd9dde3c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
ENTRY(exc_reset_thumb)

SECTIONS
{
    . = 0x0;
    .text : {
        *(.text)
    }
    .data : {
        *(.data)
    }
    .rodata : {
        *(.rodata)
    }
    .bss : {
        *(.bss)
    }
    /DISCARD/ : {
        *(.ARM.attributes)
    }
}