26 lines
545 B
YAML
26 lines
545 B
YAML
# RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
|
|
|
|
--- |
|
|
|
|
define void @test(i32* %a) {
|
|
entry2:
|
|
%b = load i32, i32* %a
|
|
%c = add i32 %b, 1
|
|
store i32 %c, i32* %a
|
|
ret void
|
|
}
|
|
|
|
...
|
|
---
|
|
name: test
|
|
tracksRegLiveness: true
|
|
liveins:
|
|
- { reg: '$rdi' }
|
|
body: |
|
|
bb.0.entry2:
|
|
liveins: $rdi
|
|
; CHECK: [[@LINE+1]]:87: expected ',' before the next machine memory operand
|
|
INC32m killed $rdi, 1, _, 0, _, implicit-def dead $eflags :: (store 4 into %ir.a) (load 4 from %ir.a)
|
|
RETQ
|
|
...
|