mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-04 17:21:42 +00:00

This does not schedule any passes besides the ones necessary to construct and print the machine function. This is useful to test .mir file reading and printing. Differential Revision: http://reviews.llvm.org/D22432 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@275664 91177308-0d34-0410-b5e6-96231b3b80d8
27 lines
405 B
YAML
27 lines
405 B
YAML
# RUN: not llc -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
|
|
# This test ensures that an error is reported when a machine function doesn't
|
|
# have a name attribute.
|
|
|
|
--- |
|
|
|
|
define i32 @foo() {
|
|
ret i32 0
|
|
}
|
|
|
|
define i32 @bar() {
|
|
ret i32 0
|
|
}
|
|
|
|
...
|
|
---
|
|
# CHECK: [[@LINE+1]]:1: missing required key 'name'
|
|
nme: foo
|
|
body: |
|
|
bb.0:
|
|
...
|
|
---
|
|
name: bar
|
|
body: |
|
|
bb.0:
|
|
...
|