Merge branch 'master' into merge-job
[deliverable/binutils-gdb.git] / ld / testsuite / ld-arm / gc-unwind.s
CommitLineData
6a5bb875
PB
1@ Test -gc-sections and unwinding tables. .data.eh should be pulled in
2@ via the EH tables, .data.foo should not.
3.text
4.global _start
5.fnstart
6_start:
7bx lr
8.personality my_pr
9.handlerdata
10.word 0
11.fnend
12
13.section .data.foo
14my_foo:
15.word 0x11111111
16
17.section .text.foo
18.fnstart
19foo:
20bx lr
21.personality my_pr
22.handlerdata
23.word my_foo
24.fnend
25
26.section .data.eh
27my_eh:
28.word 0x22222222
29
30.section .text.eh
31.fnstart
32my_pr:
33bx lr
34.personality my_pr
35.handlerdata
36.word my_eh
37.fnend
38
This page took 0.70525 seconds and 4 git commands to generate.