[x86/MIR] Implement support for pre- and post-instruction symbols, as
[llvm-complete.git] / test / CodeGen / MIR / X86 / undefined-value-in-memory-operand.mir
blob4ad8519d268aa4b6fca76ef4521f44378a30266f
1 # RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   define i32 @test(i32* %a) {
6   entry:
7     %b = load i32, i32* %a
8     ret i32 %b
9   }
11 ...
12 ---
13 name:            test
14 tracksRegLiveness: true
15 liveins:
16   - { reg: '$rdi' }
17 body: |
18   bb.0.entry:
19     liveins: $rdi
20   ; CHECK: [[@LINE+1]]:60: use of undefined IR value '%ir.c'
21     $eax = MOV32rm killed $rdi, 1, _, 0, _ :: (load 4 from %ir.c)
22     RETQ $eax
23 ...