Don't depend on Tcl behavior of redirecting stderr for all commands in a
authorDaniel Dunbar <daniel@zuster.org>
Mon, 7 Sep 2009 19:26:02 +0000 (19:26 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 7 Sep 2009 19:26:02 +0000 (19:26 +0000)
pipeline.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81153 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/2008-01-06-BitCastAttributes.ll
test/Transforms/InstCombine/call.ll

index 277b4f09075e46db6d8bbe69bce018a10fa7e671..ea52ff8402301cbf36b7450584c68a54a72ca4ef 100644 (file)
@@ -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
index df9b2a68d9dc861141e29f144daf83be417f7fa1..e1677c8fe2154d49e1c694d0588d21f2eaa4c594 100644 (file)
@@ -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.