diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-11-04 23:02:39 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-11-04 23:02:39 +0000 |
commit | d6948315b7421686c7c912b77fc1a3d7971b20e9 (patch) | |
tree | fece6ffc945a599ec9fd00a27d197fd9bea8d8e8 /llvm/test | |
parent | d31fc54f3435d5e9b0998cc8590f3cd43f91ad38 (diff) | |
download | bcm5719-llvm-d6948315b7421686c7c912b77fc1a3d7971b20e9.tar.gz bcm5719-llvm-d6948315b7421686c7c912b77fc1a3d7971b20e9.zip |
Fix tests not to emit IR output
llvm-svn: 58729
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/Transforms/MergeFunc/phi-speculation1.ll | 2 | ||||
-rw-r--r-- | llvm/test/Transforms/MergeFunc/phi-speculation2.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/MergeFunc/phi-speculation1.ll b/llvm/test/Transforms/MergeFunc/phi-speculation1.ll index 89f31e3adad..9ba3081a901 100644 --- a/llvm/test/Transforms/MergeFunc/phi-speculation1.ll +++ b/llvm/test/Transforms/MergeFunc/phi-speculation1.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -mergefunc -stats | not grep {functions merged} +; RUN: llvm-as < %s | opt -mergefunc -stats -disable-output |& not grep {functions merged} define i32 @foo1(i32 %x) { entry: diff --git a/llvm/test/Transforms/MergeFunc/phi-speculation2.ll b/llvm/test/Transforms/MergeFunc/phi-speculation2.ll index 16491002001..d8c6e30b975 100644 --- a/llvm/test/Transforms/MergeFunc/phi-speculation2.ll +++ b/llvm/test/Transforms/MergeFunc/phi-speculation2.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | opt -mergefunc -stats |& grep {functions merged} +; RUN: llvm-as < %s | opt -mergefunc -stats -disable-output |& grep {functions merged} define i32 @foo1(i32 %x) { entry: |