xref: /llvm-project/llvm/test/MC/M68k/Relocations/data-pc-rel.s (revision 75ea6b43197c3ece048c72c3553ce8219de90a2e)
1; RUN: llvm-mc -triple m68k -filetype=obj %s -o - \
2; RUN:   | llvm-readobj -r - | FileCheck -check-prefix=RELOC %s
3; RUN: llvm-mc -triple m68k -show-encoding %s -o - \
4; RUN:   | FileCheck -check-prefix=INSTR -check-prefix=FIXUP %s
5
6; RELOC: R_68K_PC8 dst1 0x1
7; INSTR: move.l  (dst1,%pc,%a0), %a0
8; FIXUP: fixup A - offset: 3, value: dst1+1, kind: FK_PCRel_1
9move.l	(dst1,%pc,%a0), %a0
10
11; RELOC: R_68K_PC16 dst2 0x0
12; INSTR: move.l  (dst2,%pc), %a0
13; FIXUP: fixup A - offset: 2, value: dst2, kind: FK_PCRel_2
14move.l	(dst2,%pc), %a0
15
16; Shouldn't have any relocation
17; RELOC-NOT: R_68K_PC
18; INSTR: move.l  (0,%pc), %a0
19; FIXUP-NOT: fixup
20move.l	(0,%pc), %a0
21