blob: 1896371db36a7258491a67ad317f8e8a1abca8f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# RUN: not llc -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
# This test ensures that the MIR parser reports an error when it encounters a
# machine function with an empty body.
--- |
define i32 @foo() {
ret i32 0
}
...
---
# CHECK: machine function 'foo' requires at least one machine basic block in its body
name: foo
...
|