diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-16 12:21:25 +0000 |
---|---|---|
committer | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-16 12:21:25 +0000 |
commit | bcd4047dd49f5a663e0e51ed33d6c1070d2fae8c (patch) | |
tree | 093e5a2ee00e7aae8c43026d6f4bfdac10430b0c /llvm/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll | |
parent | 674f866b5cd1c0efafb6a605d0a12dda27529ef0 (diff) | |
download | bcm5719-llvm-bcd4047dd49f5a663e0e51ed33d6c1070d2fae8c.tar.gz bcm5719-llvm-bcd4047dd49f5a663e0e51ed33d6c1070d2fae8c.zip |
Store the result of multiple identical run lines in a temporary file.
llvm-svn: 52314
Diffstat (limited to 'llvm/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll')
-rw-r--r-- | llvm/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll b/llvm/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll index bd30942633d..47a85ea78c3 100644 --- a/llvm/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll +++ b/llvm/test/Transforms/DeadArgElim/2007-12-20-ParamAttrs.ll @@ -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 { } |