MSP430: Fix relocation overflow when using #lo(EXP) macro
[deliverable/binutils-gdb.git] / ld / testsuite / ld-msp430-elf / reloc-lo-430x.s
1 .text
2 .balign 2
3 .global foo
4 .type foo, @function
5 foo:
6 MOV.W #lo (P), R8
7 RETA
8 .size foo, .-foo
9
10 .balign 2
11 .global main
12 .type main, @function
13 main:
14 CALLA #foo
15 .L4:
16 BRA #.L4
17 .size main, .-main
18 .section .bss,"aw",@nobits
19 .balign 2
20 .global P
21 P:
22 .zero 4
This page took 0.031234 seconds and 4 git commands to generate.