repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Automatic date update in version.in
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-kvx
/
farcall-goto-section.s
blob
d6287d1d57e64c47697bf5d8b513cc909de175ba
1
.global _start
2
3
# We will place the section .text at 0x1000.
4
5
.text
6
7
_start
:
8
goto bar
9
;;
10
goto bar2
11
;;
12
ret
13
;;
14
15
# We will place the section .foo at 0x20001000.
16
17
.section .foo,
"xa"
18
.type bar, @function
19
bar
:
20
ret
21
;;
22
.type bar2, @function
23
bar2
:
24
ret
25
;;