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 | 879b1ac22e6307e3111eac87bfba123fba1ac7a4 (patch) | |
tree | 8fcff594bfb96560a38c0a7b9de91cc39cf1f580 /test/Transforms/MergeFunc | |
parent | 4a3a8511827ecdee7e606bdd4dc3733dcac41064 (diff) | |
download | external_llvm-879b1ac22e6307e3111eac87bfba123fba1ac7a4.zip external_llvm-879b1ac22e6307e3111eac87bfba123fba1ac7a4.tar.gz external_llvm-879b1ac22e6307e3111eac87bfba123fba1ac7a4.tar.bz2 |
Fix tests not to emit IR output
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58729 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/MergeFunc')
-rw-r--r-- | test/Transforms/MergeFunc/phi-speculation1.ll | 2 | ||||
-rw-r--r-- | test/Transforms/MergeFunc/phi-speculation2.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/MergeFunc/phi-speculation1.ll b/test/Transforms/MergeFunc/phi-speculation1.ll index 89f31e3..9ba3081 100644 --- a/test/Transforms/MergeFunc/phi-speculation1.ll +++ b/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/test/Transforms/MergeFunc/phi-speculation2.ll b/test/Transforms/MergeFunc/phi-speculation2.ll index 1649100..d8c6e30 100644 --- a/test/Transforms/MergeFunc/phi-speculation2.ll +++ b/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: |