don't repeat function names in comments; NFC
[oota-llvm.git] / test / CodeGen / MIR / X86 / missing-instruction.mir
1 # RUN: not llc -march=x86-64 -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
2
3 --- |
4
5   define void @foo() {
6   entry:
7     ret void
8   }
9
10 ...
11 ---
12 name:            foo
13 body:
14  - id:           0
15    name:         entry
16    instructions:
17      # CHECK: [[@LINE+1]]:9: expected a machine instruction
18      - ''
19 ...