aarch64: override default elf .set handling in gas
[deliverable/binutils-gdb.git] / gas / testsuite / gas / xgate / hilo.s
CommitLineData
8d8ad4eb
SK
1# Test for correct generation of XGATE insns when using the %hi and %lo modifiers.
2
3 .sect .text
4;Test Constants
5hiTestLo:
6 ldl R2, %hi(0x8844)
7hiTestHi:
8 ldh R2, %hi(0x8844)
9loTestLo:
10 ldl R3, %lo(0x8844)
11loTestHi:
12 ldh R3, %lo(0x8844)
13;Test Fixups
14hiTestLoF:
15 ldl R2, %hi(test)
16hiTestHiF:
17 ldh R2, %hi(test)
18loTestLoF:
19 ldl R3, %lo(test)
20loTestHiF:
21 ldh R3, %lo(test)
22;Test Relocs
23hiTestLoR:
24 ldl R2, %hi(symValue)
25hiTestHiR:
26 ldh R2, %hi(symValue)
27loTestLoR:
28 ldl R3, %lo(symValue)
29loTestHiR:
30 ldh R3, %lo(symValue)
31
32symValue:
33test = 0xff88
This page took 0.316349 seconds and 4 git commands to generate.