MIPS16: Add R_MIPS16_PC16_S1 branch relocation support
[deliverable/binutils-gdb.git] / gas / testsuite / gas / mips / branch-weak.s
1 .text
2 .align align, 0
3 .globl foo
4 .ent foo
5 foo:
6 b bar
7 .end foo
8
9 .align align, 0
10 .globl bar
11 .weak bar
12 .ent bar
13 bar:
14 nop
15 jr $ra
16 .end bar
17
18 # Force some (non-delay-slot) zero bytes, to make 'objdump' print ...
19 .align align, 0
This page took 0.031077 seconds and 4 git commands to generate.