diff options
author | Dan Gohman <gohman@apple.com> | 2009-09-08 22:41:33 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-09-08 22:41:33 +0000 |
commit | 7c1a96c7a7740eaba015b7ed9c4308ef7a3c128b (patch) | |
tree | e793db8f809239a771b12d75c204f40c5644ed20 | |
parent | 8047d763a5dcafc243f9e7638727a51933b0b686 (diff) |
Convert a few more opt | llvm-dis to opt -S.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81261 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/Andersens/modreftest.ll | 2 | ||||
-rw-r--r-- | test/Analysis/Andersens/modreftest2.ll | 2 | ||||
-rw-r--r-- | test/Analysis/BasicAA/gcsetest.ll | 4 | ||||
-rw-r--r-- | test/Transforms/IndVarSimplify/loop_evaluate10.ll | 2 | ||||
-rw-r--r-- | test/Transforms/IndVarSimplify/preserve-gep-remainder.ll | 2 | ||||
-rw-r--r-- | test/Transforms/InstCombine/udiv_select_to_select_shift.ll | 2 | ||||
-rw-r--r-- | test/Transforms/LoopSimplify/merge-exits.ll | 3 | ||||
-rw-r--r-- | test/Transforms/LoopStrengthReduce/2009-04-28-no-reduce-mul.ll | 2 | ||||
-rw-r--r-- | test/Transforms/LoopStrengthReduce/dont_reverse.ll | 2 | ||||
-rw-r--r-- | test/Transforms/SimplifyCFG/branch-cond-merge.ll | 2 |
10 files changed, 11 insertions, 12 deletions
diff --git a/test/Analysis/Andersens/modreftest.ll b/test/Analysis/Andersens/modreftest.ll index ac42fce6682..ffb7339419c 100644 --- a/test/Analysis/Andersens/modreftest.ll +++ b/test/Analysis/Andersens/modreftest.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -anders-aa -gvn -instcombine | llvm-dis \ +; RUN: opt %s -anders-aa -gvn -instcombine -S \ ; RUN: | grep {ret i1 true} @G = internal global i32* null diff --git a/test/Analysis/Andersens/modreftest2.ll b/test/Analysis/Andersens/modreftest2.ll index f47f3d8e668..67adcbd0d1e 100644 --- a/test/Analysis/Andersens/modreftest2.ll +++ b/test/Analysis/Andersens/modreftest2.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -anders-aa -gvn | llvm-dis \ +; RUN: opt %s -anders-aa -gvn -S \ ; RUN: | not grep {ret i32 undef} ;; From PR 2160 diff --git a/test/Analysis/BasicAA/gcsetest.ll b/test/Analysis/BasicAA/gcsetest.ll index 5206b28826f..716a5dce4fb 100644 --- a/test/Analysis/BasicAA/gcsetest.ll +++ b/test/Analysis/BasicAA/gcsetest.ll @@ -2,8 +2,8 @@ ; disambiguating some obvious cases. All loads should be removable in ; this testcase. -; RUN: opt %s -basicaa -gvn -instcombine -dce \ -; RUN: | llvm-dis | not grep load +; RUN: opt %s -basicaa -gvn -instcombine -dce -S \ +; RUN: | not grep load @A = global i32 7 @B = global i32 8 diff --git a/test/Transforms/IndVarSimplify/loop_evaluate10.ll b/test/Transforms/IndVarSimplify/loop_evaluate10.ll index 61ea7ad85c6..bccae9f19e6 100644 --- a/test/Transforms/IndVarSimplify/loop_evaluate10.ll +++ b/test/Transforms/IndVarSimplify/loop_evaluate10.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -indvars | llvm-dis \ +; RUN: opt %s -indvars -S \ ; RUN: | grep {%b.1 = phi i32 \\\[ 2, %bb \\\], \\\[ 1, %bb2 \\\]} ; This loop has multiple exits, and the value of %b1 depends on which diff --git a/test/Transforms/IndVarSimplify/preserve-gep-remainder.ll b/test/Transforms/IndVarSimplify/preserve-gep-remainder.ll index 1a7a41262fe..a877ba048ae 100644 --- a/test/Transforms/IndVarSimplify/preserve-gep-remainder.ll +++ b/test/Transforms/IndVarSimplify/preserve-gep-remainder.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -indvars | llvm-dis \ +; RUN: opt %s -indvars -S \ ; RUN: | grep {\[%\]p.2.ip.1 = getelementptr \\\[3 x \\\[3 x double\\\]\\\]\\* \[%\]p, i64 2, i64 \[%\]tmp, i64 1} ; Indvars shouldn't expand this to diff --git a/test/Transforms/InstCombine/udiv_select_to_select_shift.ll b/test/Transforms/InstCombine/udiv_select_to_select_shift.ll index d73271eeab8..9b059a6cc94 100644 --- a/test/Transforms/InstCombine/udiv_select_to_select_shift.ll +++ b/test/Transforms/InstCombine/udiv_select_to_select_shift.ll @@ -1,7 +1,7 @@ ; Test that this transform works: ; udiv X, (Select Cond, C1, C2) --> Select Cond, (shr X, C1), (shr X, C2) ; -; RUN: opt %s -instcombine | llvm-dis -o %t +; RUN: opt < %s -instcombine -S -o %t ; RUN: not grep select %t ; RUN: grep lshr %t | count 2 ; RUN: not grep udiv %t diff --git a/test/Transforms/LoopSimplify/merge-exits.ll b/test/Transforms/LoopSimplify/merge-exits.ll index b1f6c9f31fa..1d6562a79cc 100644 --- a/test/Transforms/LoopSimplify/merge-exits.ll +++ b/test/Transforms/LoopSimplify/merge-exits.ll @@ -1,5 +1,4 @@ -; RUN: opt %s -loopsimplify -loop-rotate -instcombine -indvars \ -; RUN: | llvm-dis > %t +; RUN: opt %s -loopsimplify -loop-rotate -instcombine -indvars -S > %t ; RUN: not grep sext %t ; RUN: grep {phi i64} %t | count 1 diff --git a/test/Transforms/LoopStrengthReduce/2009-04-28-no-reduce-mul.ll b/test/Transforms/LoopStrengthReduce/2009-04-28-no-reduce-mul.ll index b535d3c0faa..93900802a19 100644 --- a/test/Transforms/LoopStrengthReduce/2009-04-28-no-reduce-mul.ll +++ b/test/Transforms/LoopStrengthReduce/2009-04-28-no-reduce-mul.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -loop-reduce | llvm-dis \ +; RUN: opt %s -loop-reduce -S \ ; RUN: | grep {getelementptr.*%lsr.iv.*%lsr.iv.*<i32\\*>} ; The multiply in bb2 must not be reduced to an add, as the sext causes the ; %1 argument to become negative after a while. diff --git a/test/Transforms/LoopStrengthReduce/dont_reverse.ll b/test/Transforms/LoopStrengthReduce/dont_reverse.ll index 3f6a78725a3..71d417d1309 100644 --- a/test/Transforms/LoopStrengthReduce/dont_reverse.ll +++ b/test/Transforms/LoopStrengthReduce/dont_reverse.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -loop-reduce | llvm-dis \ +; RUN: opt %s -loop-reduce -S \ ; RUN: | grep {icmp eq i2 %lsr.iv.next, %xmp4344} ; Don't reverse the iteration if the rhs of the compare is defined diff --git a/test/Transforms/SimplifyCFG/branch-cond-merge.ll b/test/Transforms/SimplifyCFG/branch-cond-merge.ll index f1da1ba1624..98fa8a5cd33 100644 --- a/test/Transforms/SimplifyCFG/branch-cond-merge.ll +++ b/test/Transforms/SimplifyCFG/branch-cond-merge.ll @@ -1,5 +1,5 @@ ; RUN: opt %s -simplifycfg -instcombine \ -; RUN: -simplifycfg | llvm-dis | not grep call +; RUN: -simplifycfg -S | not grep call declare void @bar() |