[llvm-commits] [llvm] r81153 - in /llvm/trunk/test/Transforms/InstCombine: 2008-01-06-BitCastAttributes.ll call.ll
Daniel Dunbar
daniel at zuster.org
Mon Sep 7 12:26:03 PDT 2009
Author: ddunbar
Date: Mon Sep 7 14:26:02 2009
New Revision: 81153
URL: http://llvm.org/viewvc/llvm-project?rev=81153&view=rev
Log:
Don't depend on Tcl behavior of redirecting stderr for all commands in a
pipeline.
Modified:
llvm/trunk/test/Transforms/InstCombine/2008-01-06-BitCastAttributes.ll
llvm/trunk/test/Transforms/InstCombine/call.ll
Modified: llvm/trunk/test/Transforms/InstCombine/2008-01-06-BitCastAttributes.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/2008-01-06-BitCastAttributes.ll?rev=81153&r1=81152&r2=81153&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/2008-01-06-BitCastAttributes.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/2008-01-06-BitCastAttributes.ll Mon Sep 7 14:26:02 2009
@@ -1,5 +1,5 @@
; Ignore stderr, we expect warnings there
-; RUN: llvm-as < %s 2> /dev/null | opt -instcombine | llvm-dis | not grep bitcast
+; RUN: llvm-as < %s | opt -instcombine 2> /dev/null | llvm-dis | not grep bitcast
define void @a() {
ret void
Modified: llvm/trunk/test/Transforms/InstCombine/call.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/call.ll?rev=81153&r1=81152&r2=81153&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/call.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/call.ll Mon Sep 7 14:26:02 2009
@@ -1,5 +1,5 @@
; Ignore stderr, we expect warnings there
-; RUN: llvm-as < %s 2> /dev/null | opt -instcombine | llvm-dis | \
+; RUN: llvm-as < %s | opt -instcombine 2> /dev/null | llvm-dis | \
; RUN: grep call | notcast
; END.
More information about the llvm-commits
mailing list