linux-packaging-mono/external/llvm/test/CodeGen/MIR/ARM/extraneous-closing-brace-error.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

21 lines
386 B
YAML

# RUN: not llc -mtriple thumbv7-apple-ios -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
--- |
define i32 @test1(i32 %a) {
entry:
ret i32 %a
}
...
---
name: test1
tracksRegLiveness: true
liveins:
- { reg: '%r0' }
body: |
bb.0.entry:
liveins: %r0
tBX_RET 14, _, implicit killed %r0
; CHECK: [[@LINE+1]]:5: extraneous closing brace ('}')
}
...