linux-packaging-mono/external/llvm-project/llvm/test/CodeGen/MIR/ARM/extraneous-closing-brace-error.mir
Xamarin Public Jenkins (auto-signing) 468663ddbb Imported Upstream version 6.10.0.49
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
2020-01-16 16:38:04 +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 ('}')
}
...