[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / CodeGen / MIR / Generic / machine-basic-block-unknown-name.mir
blob98d68f7cd46cf3eed63c59260174996412583d6b
1 # RUN: not llc -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2 # This test ensures that an error is reported whenever the MIR parser can't find
3 # a basic block with the machine basis block's name.
5 --- |
7   define i32 @foo() {
8   entry:
9     ret i32 0
10   }
12 ...
13 ---
14 name:            foo
15 body: |
16   ; CHECK: [[@LINE+1]]:3: basic block 'entrie' is not defined in the function 'foo'
17   bb.0.entrie:
18 ...