1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 12:43:36 +01:00
llvm-mirror/test/CodeGen/MIR/Generic/machine-basic-block-ir-block-reference.mir
Matthias Braun 075724a5d9 MIRTests: Remove unnecessary 2>&1 redirection
llc mir output goes to stdout nowadays, so the 2>&1 is not necessary
anymore for most tests.

llvm-svn: 295859
2017-02-22 18:47:41 +00:00

18 lines
278 B
YAML

# RUN: llc -run-pass none -o - %s | 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):
...