MIR Serialization: Serialize the memory operand's alias scope metadata node.
[oota-llvm.git] / test / CodeGen / MIR / ARM / extraneous-closing-brace-error.mir
1 # RUN: not llc -mtriple thumbv7-apple-ios -start-after block-placement -stop-after block-placement -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 ...