]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/testsuite/ld-kvx/farcall-call-none-function.s
kvx: New port.
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-kvx / farcall-call-none-function.s
1 .global _start
2 .global bar
3
4 # We will place the section .text at 0x1000.
5
6 .text
7
8 _start:
9 call bar
10 ;;
11 ret
12 ;;
13
14 # We will place the section .foo at 0x10001000.
15
16 .section .foo, "xa"
17 bar:
18 ret
19 ;;