[x86/MIR] Implement support for pre- and post-instruction symbols, as
[llvm-complete.git] / test / CodeGen / MIR / X86 / expected-integer-after-offset-sign.mir
blob3f492a94e2c2b7c3adbdc3b12c8fd6cc2bf864e4
1 # RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   @G = external global i32
7   define i32 @inc() {
8   entry:
9     %a = load i32, i32* @G
10     %b = add i32 %a, 1
11     ret i32 %b
12   }
14 ...
15 ---
16 name: inc
17 body: |
18   bb.0.entry:
19     ; CHECK: [[@LINE+1]]:37: expected an integer literal after '+'
20     $rax = MOV64rm $rip, 1, _, @G + , _
21     $eax = MOV32rm $rax, 1, _, 0, _
22     $eax = INC32r $eax, implicit-def $eflags
23     RETQ $eax
24 ...