repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* dw2gencfi.c (DWARF2_FDE_RELOC_SIZE): New.
[binutils.git]
/
ld
/
testsuite
/
ld-arm
/
farcall-mix2.s
blob
803e8d08f878df49acaf05157cf233a29f6bc8fb
1
@ Test to ensure that ARM calls exceeding
32
Mb generate stubs.
2
3
.global _start
4
.syntax unified
5
6
@ We will place the section
.text at 0x1000.
7
8
.text
9
10
_start
:
11
bl
bar
12
bl
bar2
13
14
15
@ We will place the section
.mytext at 0x2000.
16
17
.section .mytext,
"xa"
18
bl
bar3
19
bl
bar4
20
bl
bar5
21
22
@ We will place the section
.foo at 0x2003020.
23
24
.section .foo,
"xa"
25
26
.global bar
27
.thumb_func
28
bar
:
29
bx
lr
30
31
.arm
32
.global bar2
33
.type bar2, %function
34
bar2
:
35
bx
lr
36
37
.global bar3
38
.type bar3, %function
39
bar3
:
40
bx
lr
41
42
.global bar4
43
.thumb_func
44
bar4
:
45
bx
lr
46
47
.global bar5
48
.type bar5, %function
49
bar5
:
50
bx
lr
51