linux-packaging-mono/external/llvm/test/CodeGen/MIR/X86/expected-comma-after-memory-operand.mir
Xamarin Public Jenkins (auto-signing) 64ac736ec5 Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
2019-04-12 14:10:50 +00:00

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
...