Fix implib test failures
[deliverable/binutils-gdb.git] / ld / testsuite / ld-mips-elf / jal-local-overflow.s
1 .text
2 .set noreorder
3 .org 0x2000
4
5 .align 4
6 .globl foo
7 .ent foo
8 foo:
9 jal abar - 8
10 nor $0, $0
11
12 .aent afoo
13 afoo:
14 jal afoo - 8
15 nor $0, $0
16 .end foo
17
18 .org 0x4000
19
20 .align 4
21 .globl bar
22 .ent bar
23 bar:
24 jal afoo - 8
25 nor $0, $0
26
27 .aent abar
28 abar:
29 jal abar - 8
30 nor $0, $0
31 .end bar
32
33 # Force some (non-delay-slot) zero bytes, to make 'objdump' print ...
34 .align 4, 0
35 .space 16
This page took 0.031493 seconds and 4 git commands to generate.