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 | 4f2527cd6d6abbb96e2fa131878591292cbb98f9 (patch) | |
tree | 44010de9723c86f98b8bda027ab49a294bfe4a45 /llvm/test/Transforms/IndVarSimplify | |
parent | 7896c8ba58caac992f75a147f01796c38c9210e2 (diff) | |
download | bcm5719-llvm-4f2527cd6d6abbb96e2fa131878591292cbb98f9.tar.gz bcm5719-llvm-4f2527cd6d6abbb96e2fa131878591292cbb98f9.zip |
Convert a few more opt | llvm-dis to opt -S.
llvm-svn: 81261
Diffstat (limited to 'llvm/test/Transforms/IndVarSimplify')
-rw-r--r-- | llvm/test/Transforms/IndVarSimplify/loop_evaluate10.ll | 2 | ||||
-rw-r--r-- | llvm/test/Transforms/IndVarSimplify/preserve-gep-remainder.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/IndVarSimplify/loop_evaluate10.ll b/llvm/test/Transforms/IndVarSimplify/loop_evaluate10.ll index 61ea7ad85c6..bccae9f19e6 100644 --- a/llvm/test/Transforms/IndVarSimplify/loop_evaluate10.ll +++ b/llvm/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/llvm/test/Transforms/IndVarSimplify/preserve-gep-remainder.ll b/llvm/test/Transforms/IndVarSimplify/preserve-gep-remainder.ll index 1a7a41262fe..a877ba048ae 100644 --- a/llvm/test/Transforms/IndVarSimplify/preserve-gep-remainder.ll +++ b/llvm/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 |