Regen ld BLD-POTFILES.in
[deliverable/binutils-gdb.git] / ld / testsuite / ld-msp430-elf / msp430-no-lower.ld
CommitLineData
7ef3addb
JL
1/* Script for ld testsuite */
2OUTPUT_ARCH(msp430)
3ENTRY(_start)
4
5SECTIONS
6{
7 .text :
8 {
9 PROVIDE (_start = .);
10 . = ALIGN(2);
11 *(.text .stub .text.* .gnu.linkonce.t.* .text:*)
12 }
13
14 .rodata :
15 {
16 *(.rodata.* .rodata)
17 }
18
19 .data :
20 {
21 . = ALIGN(2);
22 *(.data.* .data)
23 }
24
25 .bss :
26 {
27 . = ALIGN(2);
28 *(.bss.* .bss)
29 }
30
31 .upper.text :
32 {
33 . = ALIGN(2);
34 *(.upper.text.* .upper.text)
35 }
36
37 .upper.rodata :
38 {
39 . = ALIGN(2);
40 *(.upper.rodata .upper.rodata.*)
41 }
42
43 .upper.data :
44 {
45 . = ALIGN(2);
46 *(.upper.data .upper.data.*)
47 }
48
49 .upper.bss :
50 {
51 . = ALIGN(2);
52 *(.upper.bss .upper.bss.*)
53 }
54}
This page took 0.15349 seconds and 4 git commands to generate.