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---
10name:            test1
11tracksRegLiveness: true
12liveins:
13  - { reg: '$r0' }
14body: |
15  bb.0.entry:
16    liveins: $r0
17    tBX_RET 14, _, implicit killed $r0
18  ; CHECK: [[@LINE+1]]:5: extraneous closing brace ('}')
19    }
20...
21