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