]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/testsuite/ld-kvx/limit-call.s
kvx: New port.
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-kvx / limit-call.s
1 # Test maximum encoding range of call
2
3 .global _start
4 .global bar
5
6 # We will place the section .text at 0x0000.
7
8 .text
9
10 _start:
11 call bar
12 ;;
13 ret
14 ;;
15
16 # We will place the section .foo at 0x10000000
17
18 .section .foo, "xa"
19 .type bar, @function
20 bar:
21 ret
22 ;;