[x86/MIR] Implement support for pre- and post-instruction symbols, as
[llvm-complete.git] / test / CodeGen / MIR / X86 / expected-number-after-bb.mir
blobeb570c660adc572c9dd99f28c2514655d14ea64c
1 # RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   define i32 @foo(i32* %p) {
6   entry:
7     %a = load i32, i32* %p
8     %b = icmp sle i32 %a, 10
9     br i1 %b, label %yes, label %nah
11   yes:
12     ret i32 0
14   nah:
15     ret i32 %a
16   }
18 ...
19 ---
20 name:            foo
21 body: |
22   bb.0.entry:
23     $eax = MOV32rm $rdi, 1, _, 0, _
24     CMP32ri8 $eax, 10, implicit-def $eflags
25     ; CHECK: [[@LINE+1]]:14: expected a number after '%bb.'
26     JG_1 %bb.nah, implicit $eflags
28   bb.1.true:
29     $eax = MOV32r0 implicit-def $eflags
31   bb.2.nah:
32     RETQ $eax
33 ...