diff options
author | Quentin Colombet <qcolombet@apple.com> | 2016-07-13 20:36:03 +0000 |
---|---|---|
committer | Quentin Colombet <qcolombet@apple.com> | 2016-07-13 20:36:03 +0000 |
commit | 545e558b8209d1467ce0249ed9b5c45e6c81e8c5 (patch) | |
tree | 1cef9dfc88aa4a886bf38c1f3279d23523274b5b /llvm/test/CodeGen/PowerPC/stackmap-frame-setup.ll | |
parent | 70ec1c7e62461ad559cc302adbd2f4e83e2fc264 (diff) | |
download | bcm5719-llvm-545e558b8209d1467ce0249ed9b5c45e6c81e8c5.tar.gz bcm5719-llvm-545e558b8209d1467ce0249ed9b5c45e6c81e8c5.zip |
[MIR] Print on the given output instead of stderr.
Currently the MIR framework prints all its outputs (errors and actual
representation) on stderr.
This patch fixes that by printing the regular output in the output
specified with -o.
Differential Revision: http://reviews.llvm.org/D22251
llvm-svn: 275314
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/stackmap-frame-setup.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/stackmap-frame-setup.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/PowerPC/stackmap-frame-setup.ll b/llvm/test/CodeGen/PowerPC/stackmap-frame-setup.ll index b83375e3b48..b5f1d4cfe4b 100644 --- a/llvm/test/CodeGen/PowerPC/stackmap-frame-setup.ll +++ b/llvm/test/CodeGen/PowerPC/stackmap-frame-setup.ll @@ -1,5 +1,5 @@ -; RUN: llc -o /dev/null -verify-machineinstrs -mtriple=powerpc64-unknown-gnu-linux -stop-after machine-sink %s 2>&1 | FileCheck %s --check-prefix=ISEL -; RUN: llc -o /dev/null -verify-machineinstrs -mtriple=powerpc64-unknown-gnu-linux -fast-isel -fast-isel-abort=1 -stop-after machine-sink %s 2>&1 | FileCheck %s --check-prefix=FAST-ISEL +; RUN: llc -o - -verify-machineinstrs -mtriple=powerpc64-unknown-gnu-linux -stop-after machine-sink %s | FileCheck %s --check-prefix=ISEL +; RUN: llc -o - -verify-machineinstrs -mtriple=powerpc64-unknown-gnu-linux -fast-isel -fast-isel-abort=1 -stop-after machine-sink %s | FileCheck %s --check-prefix=FAST-ISEL define void @caller_meta_leaf() { entry: |