diff options
Diffstat (limited to 'test/Transforms/ScalarRepl')
-rw-r--r-- | test/Transforms/ScalarRepl/2003-05-29-ArrayFail.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ScalarRepl/2003-05-30-InvalidIndices.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ScalarRepl/2003-05-30-MultiLevel.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ScalarRepl/arraytest.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ScalarRepl/badarray.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ScalarRepl/basictest.ll | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/test/Transforms/ScalarRepl/2003-05-29-ArrayFail.ll b/test/Transforms/ScalarRepl/2003-05-29-ArrayFail.ll index 0f8d480..e964dc8 100644 --- a/test/Transforms/ScalarRepl/2003-05-29-ArrayFail.ll +++ b/test/Transforms/ScalarRepl/2003-05-29-ArrayFail.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -scalarrepl | dis | grep alloca | grep '4 x' +; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | grep alloca | grep '4 x' ; Test that an array is not incorrectly deconstructed... diff --git a/test/Transforms/ScalarRepl/2003-05-30-InvalidIndices.ll b/test/Transforms/ScalarRepl/2003-05-30-InvalidIndices.ll index 42f6f8b..6ec9adb 100644 --- a/test/Transforms/ScalarRepl/2003-05-30-InvalidIndices.ll +++ b/test/Transforms/ScalarRepl/2003-05-30-InvalidIndices.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -scalarrepl +; RUN: llvm-as < %s | opt -scalarrepl void %main() { %E = alloca { { int, float, double, long }, { int, float, double, long } } ; <{ { int, float, double, long }, { int, float, double, long } }*> [#uses=1] diff --git a/test/Transforms/ScalarRepl/2003-05-30-MultiLevel.ll b/test/Transforms/ScalarRepl/2003-05-30-MultiLevel.ll index d6f437e..958f33a 100644 --- a/test/Transforms/ScalarRepl/2003-05-30-MultiLevel.ll +++ b/test/Transforms/ScalarRepl/2003-05-30-MultiLevel.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -scalarrepl +; RUN: llvm-as < %s | opt -scalarrepl int %test() { %X = alloca { [ 4 x int] } diff --git a/test/Transforms/ScalarRepl/arraytest.ll b/test/Transforms/ScalarRepl/arraytest.ll index 076659b..b923e19 100644 --- a/test/Transforms/ScalarRepl/arraytest.ll +++ b/test/Transforms/ScalarRepl/arraytest.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -scalarrepl -mem2reg | dis | not grep alloca +; RUN: llvm-as < %s | opt -scalarrepl -mem2reg | llvm-dis | not grep alloca int %test() { %X = alloca [ 4 x int ] diff --git a/test/Transforms/ScalarRepl/badarray.ll b/test/Transforms/ScalarRepl/badarray.ll index 22e84f8..fa3156b 100644 --- a/test/Transforms/ScalarRepl/badarray.ll +++ b/test/Transforms/ScalarRepl/badarray.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -scalarrepl -mem2reg | dis | grep alloca +; RUN: llvm-as < %s | opt -scalarrepl -mem2reg | llvm-dis | grep alloca int %test() { %X = alloca [ 4 x int ] diff --git a/test/Transforms/ScalarRepl/basictest.ll b/test/Transforms/ScalarRepl/basictest.ll index a576fd6..df27b09 100644 --- a/test/Transforms/ScalarRepl/basictest.ll +++ b/test/Transforms/ScalarRepl/basictest.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -scalarrepl -mem2reg | dis | not grep alloca +; RUN: llvm-as < %s | opt -scalarrepl -mem2reg | llvm-dis | not grep alloca int %test() { %X = alloca { int, float } |