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 llvm-svn: 275664
18 lines
283 B
YAML
18 lines
283 B
YAML
# RUN: llc -run-pass none -o - %s 2>&1 | FileCheck %s
|
|
# This test ensures that the MIR parser preserves unnamed LLVM IR block
|
|
# references.
|
|
|
|
--- |
|
|
|
|
define i32 @foo() {
|
|
ret i32 0
|
|
}
|
|
|
|
...
|
|
---
|
|
name: foo
|
|
body: |
|
|
; CHECK: bb.0 (%ir-block.0):
|
|
bb.0 (%ir-block.0):
|
|
...
|