[llvm-commits] [llvm] r52314 - /llvm/trunk/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll

Matthijs Kooijman matthijs at stdin.nl
Mon Jun 16 05:21:26 PDT 2008


Author: matthijs
Date: Mon Jun 16 07:21:25 2008
New Revision: 52314

URL: http://llvm.org/viewvc/llvm-project?rev=52314&view=rev
Log:
Store the result of multiple identical run lines in a temporary file.

Modified:
    llvm/trunk/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll

Modified: llvm/trunk/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll?rev=52314&r1=52313&r2=52314&view=diff

==============================================================================
--- llvm/trunk/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll (original)
+++ llvm/trunk/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll Mon Jun 16 07:21:25 2008
@@ -1,8 +1,9 @@
-; RUN: llvm-as < %s | opt -deadargelim | llvm-dis | grep nounwind | count 2
-; RUN: llvm-as < %s | opt -deadargelim | llvm-dis | grep signext | count 2
-; RUN: llvm-as < %s | opt -deadargelim | llvm-dis | not grep inreg
-; RUN: llvm-as < %s | opt -deadargelim | llvm-dis | not grep zeroext
-; RUN: llvm-as < %s | opt -deadargelim | llvm-dis | not grep byval
+; RUN: llvm-as < %s | opt -deadargelim | llvm-dis > %t
+; RUN: cat %t | grep nounwind | count 2
+; RUN: cat %t | grep signext | count 2
+; RUN: cat %t | not grep inreg
+; RUN: cat %t | not grep zeroext
+; RUN: cat %t | not grep byval
 
 	%struct = type { }
 





More information about the llvm-commits mailing list