diff options
author | Dan Gohman <gohman@apple.com> | 2010-01-26 19:25:59 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-01-26 19:25:59 +0000 |
commit | 80386c10d48ace61ce0e83ab2d24c100ebb6e984 (patch) | |
tree | 28f7184234c256bea72fc9be9ecf2d714245defe /llvm/test/Transforms | |
parent | 9bd6db5834bc68cf7be96d368d6bae592f7134e6 (diff) | |
download | bcm5719-llvm-80386c10d48ace61ce0e83ab2d24c100ebb6e984.tar.gz bcm5719-llvm-80386c10d48ace61ce0e83ab2d24c100ebb6e984.zip |
-disable-output is no longer needed with -analyze.
llvm-svn: 94574
Diffstat (limited to 'llvm/test/Transforms')
3 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/Transforms/IndVarSimplify/shrunk-constant.ll b/llvm/test/Transforms/IndVarSimplify/shrunk-constant.ll index 8003fd36710..271f8edf198 100644 --- a/llvm/test/Transforms/IndVarSimplify/shrunk-constant.ll +++ b/llvm/test/Transforms/IndVarSimplify/shrunk-constant.ll @@ -1,4 +1,4 @@ -; RUN: opt < %s -scalar-evolution -analyze -disable-output \ +; RUN: opt < %s -scalar-evolution -analyze \ ; RUN: | grep {\\--> (zext i4 {-7,+,-8}<%loop> to i32)} define fastcc void @foo() nounwind { diff --git a/llvm/test/Transforms/LoopStrengthReduce/pr3086.ll b/llvm/test/Transforms/LoopStrengthReduce/pr3086.ll index 9a5911f1df4..599633a11fe 100644 --- a/llvm/test/Transforms/LoopStrengthReduce/pr3086.ll +++ b/llvm/test/Transforms/LoopStrengthReduce/pr3086.ll @@ -1,5 +1,5 @@ -; RUN: opt < %s -loop-reduce -disable-output -; RUN: opt < %s -analyze -scalar-evolution -disable-output +; RUN: opt < %s -loop-reduce +; RUN: opt < %s -analyze -scalar-evolution ; PR 3086 %struct.Cls = type { i32, i8, [2 x %struct.Cls*], [2 x %struct.Lit*] } diff --git a/llvm/test/Transforms/LoopStrengthReduce/quadradic-exit-value.ll b/llvm/test/Transforms/LoopStrengthReduce/quadradic-exit-value.ll index b829b4738bc..c91f5cd4ca7 100644 --- a/llvm/test/Transforms/LoopStrengthReduce/quadradic-exit-value.ll +++ b/llvm/test/Transforms/LoopStrengthReduce/quadradic-exit-value.ll @@ -1,4 +1,4 @@ -; RUN: opt < %s -analyze -iv-users -disable-output | grep {Stride i64 {3,+,2}<%loop>:} +; RUN: opt < %s -analyze -iv-users | grep {Stride i64 {3,+,2}<%loop>:} ; The value of %r is dependent on a polynomial iteration expression. |