[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MC / PowerPC / ppc32-reloc-directive.s
blob1563dd2c065db9f79acbb79aa5a9b02611f30f73
1 # RUN: llvm-mc -triple=powerpc-linux-musl %s | FileCheck --check-prefix=PRINT %s
3 # RUN: llvm-mc -filetype=obj -triple=powerpc-linux-musl %s | llvm-readobj -r | FileCheck %s
5 # PRINT: .reloc 8, R_PPC_NONE, .data
6 # PRINT: .reloc 4, R_PPC_NONE, foo+4
7 # PRINT: .reloc 0, R_PPC_NONE, 8
9 # CHECK: 0x8 R_PPC_NONE .data 0x0
10 # CHECK-NEXT: 0x4 R_PPC_NONE foo 0x4
11 # CHECK-NEXT: 0x0 R_PPC_NONE - 0x8
13 .text
14 blr
15 nop
16 nop
17 .reloc 8, R_PPC_NONE, .data
18 .reloc 4, R_PPC_NONE, foo+4
19 .reloc 0, R_PPC_NONE, 8
21 .data
22 .globl foo
23 foo:
24 .word 0
25 .word 0
26 .word 0