diff options
Diffstat (limited to 'test/Transforms/ScalarRepl/not-a-vector.ll')
-rw-r--r-- | test/Transforms/ScalarRepl/not-a-vector.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/ScalarRepl/not-a-vector.ll b/test/Transforms/ScalarRepl/not-a-vector.ll index e2111e7..f89ac61 100644 --- a/test/Transforms/ScalarRepl/not-a-vector.ll +++ b/test/Transforms/ScalarRepl/not-a-vector.ll @@ -1,6 +1,6 @@ -; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | not grep alloca -; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | not grep {7 x double} -; RUN: llvm-as < %s | opt -scalarrepl -instcombine | llvm-dis | grep {ret double %B} +; RUN: opt %s -scalarrepl | llvm-dis | not grep alloca +; RUN: opt %s -scalarrepl | llvm-dis | not grep {7 x double} +; RUN: opt %s -scalarrepl -instcombine | llvm-dis | grep {ret double %B} define double @test(double %A, double %B) { %ARR = alloca [7 x i64] |