mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-02 08:11:54 +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
16 lines
246 B
YAML
16 lines
246 B
YAML
# RUN: not llc -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
|
|
|
|
--- |
|
|
|
|
define i32 @foo() {
|
|
ret i32 0
|
|
}
|
|
|
|
...
|
|
---
|
|
name: foo
|
|
body: |
|
|
; CHECK: [[@LINE+1]]:9: use of undefined IR block '%ir-block.10'
|
|
bb.0 (%ir-block.10):
|
|
...
|