repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git]
/
test
/
CodeGen
/
MIR
/
ARM
/
extraneous-closing-brace-error.mir
blob
02b06bc3432dd4f437ba37e39cd4d5c52ef93fa5
1
# RUN: not llc -mtriple thumbv7-apple-ios -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2
3
--- |
4
define i32 @test1(i32 %a) {
5
entry:
6
ret i32 %a
7
}
8
...
9
---
10
name: test1
11
tracksRegLiveness: true
12
liveins:
13
- { reg: '$r0' }
14
body: |
15
bb.0.entry:
16
liveins: $r0
17
tBX_RET 14, _, implicit killed $r0
18
; CHECK: [[@LINE+1]]:5: extraneous closing brace ('}')
19
}
20
...