diff options
Diffstat (limited to 'test/Transforms/ADCE')
-rw-r--r-- | test/Transforms/ADCE/2002-01-31-UseStuckAround.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2002-05-22-PHITest.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2002-05-23-ZeroArgPHITest.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2002-05-28-Crash-distilled.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2002-05-28-Crash.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2002-07-17-AssertionFailure.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2002-07-17-PHIAssertion.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2003-01-22-PredecessorProblem.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2003-04-25-PHIPostDominateProblem.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2003-06-11-InvalidCFG.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2003-06-24-BadSuccessor.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2003-06-24-BasicFunctionality.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/2003-09-10-UnwindInstFail.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/adcetest.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/basictest.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/basictest1.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ADCE/basictest2.ll | 2 |
17 files changed, 17 insertions, 17 deletions
diff --git a/test/Transforms/ADCE/2002-01-31-UseStuckAround.ll b/test/Transforms/ADCE/2002-01-31-UseStuckAround.ll index 7f6227063c..162b0508fd 100644 --- a/test/Transforms/ADCE/2002-01-31-UseStuckAround.ll +++ b/test/Transforms/ADCE/2002-01-31-UseStuckAround.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -adce +; RUN: llvm-as < %s | opt -adce implementation diff --git a/test/Transforms/ADCE/2002-05-22-PHITest.ll b/test/Transforms/ADCE/2002-05-22-PHITest.ll index 79bcd814f3..e13536cac0 100644 --- a/test/Transforms/ADCE/2002-05-22-PHITest.ll +++ b/test/Transforms/ADCE/2002-05-22-PHITest.ll @@ -1,6 +1,6 @@ ; It is illegal to remove BB1 because it will mess up the PHI node! ; -; RUN: as < %s | opt -adce | dis | grep BB1 +; RUN: llvm-as < %s | opt -adce | llvm-dis | grep BB1 int "test"(bool %C, int %A, int %B) { diff --git a/test/Transforms/ADCE/2002-05-23-ZeroArgPHITest.ll b/test/Transforms/ADCE/2002-05-23-ZeroArgPHITest.ll index 6862dad5b7..d489596927 100644 --- a/test/Transforms/ADCE/2002-05-23-ZeroArgPHITest.ll +++ b/test/Transforms/ADCE/2002-05-23-ZeroArgPHITest.ll @@ -4,7 +4,7 @@ ; removed even though there were uses still around. Now the uses are filled ; in with a dummy value before the PHI is deleted. ; -; RUN: as < %s | opt -adce +; RUN: llvm-as < %s | opt -adce %node_t = type { double*, %node_t*, %node_t**, double**, double*, int, int } diff --git a/test/Transforms/ADCE/2002-05-28-Crash-distilled.ll b/test/Transforms/ADCE/2002-05-28-Crash-distilled.ll index 347559be48..1fcf609786 100644 --- a/test/Transforms/ADCE/2002-05-28-Crash-distilled.ll +++ b/test/Transforms/ADCE/2002-05-28-Crash-distilled.ll @@ -1,6 +1,6 @@ ; This testcase is a distilled form of: 2002-05-28-Crash.ll -; RUN: as < %s | opt -adce +; RUN: llvm-as < %s | opt -adce float "test"(int %i) { %F = cast int %i to float ; This BB is not dead diff --git a/test/Transforms/ADCE/2002-05-28-Crash.ll b/test/Transforms/ADCE/2002-05-28-Crash.ll index ac81252759..5b4acda062 100644 --- a/test/Transforms/ADCE/2002-05-28-Crash.ll +++ b/test/Transforms/ADCE/2002-05-28-Crash.ll @@ -11,7 +11,7 @@ ; return !s; ;} ; -; RUN: as < %s | opt -adce +; RUN: llvm-as < %s | opt -adce implementation ; Functions: diff --git a/test/Transforms/ADCE/2002-07-17-AssertionFailure.ll b/test/Transforms/ADCE/2002-07-17-AssertionFailure.ll index edc658e8ee..36db7fb5de 100644 --- a/test/Transforms/ADCE/2002-07-17-AssertionFailure.ll +++ b/test/Transforms/ADCE/2002-07-17-AssertionFailure.ll @@ -3,7 +3,7 @@ ; block in this function, it would work fine, but that would be the part we ; have to fix now, wouldn't it.... ; -; RUN: as < %s | opt -adce +; RUN: llvm-as < %s | opt -adce void %foo(sbyte* %reg5481) { %cast611 = cast sbyte* %reg5481 to sbyte** ; <sbyte**> [#uses=1] diff --git a/test/Transforms/ADCE/2002-07-17-PHIAssertion.ll b/test/Transforms/ADCE/2002-07-17-PHIAssertion.ll index 02125a51e0..bd88884756 100644 --- a/test/Transforms/ADCE/2002-07-17-PHIAssertion.ll +++ b/test/Transforms/ADCE/2002-07-17-PHIAssertion.ll @@ -1,6 +1,6 @@ ; This testcase was extracted from the gzip SPEC benchmark ; -; RUN: as < %s | opt -adce +; RUN: llvm-as < %s | opt -adce %bk = external global uint ; <uint*> [#uses=2] %hufts = external global uint ; <uint*> [#uses=1] diff --git a/test/Transforms/ADCE/2003-01-22-PredecessorProblem.ll b/test/Transforms/ADCE/2003-01-22-PredecessorProblem.ll index 2931db071b..5023f94246 100644 --- a/test/Transforms/ADCE/2003-01-22-PredecessorProblem.ll +++ b/test/Transforms/ADCE/2003-01-22-PredecessorProblem.ll @@ -1,5 +1,5 @@ ; Testcase reduced from 197.parser by bugpoint -; RUN: as < %s | opt -adce +; RUN: llvm-as < %s | opt -adce implementation ; Functions: void %conjunction_prune() { diff --git a/test/Transforms/ADCE/2003-04-25-PHIPostDominateProblem.ll b/test/Transforms/ADCE/2003-04-25-PHIPostDominateProblem.ll index 994a63e7b3..1a71ffe02e 100644 --- a/test/Transforms/ADCE/2003-04-25-PHIPostDominateProblem.ll +++ b/test/Transforms/ADCE/2003-04-25-PHIPostDominateProblem.ll @@ -2,7 +2,7 @@ ; entries for it's postdominator. But I think this can only happen when the ; PHI node is dead, so we just avoid patching up dead PHI nodes. -; RUN: as < %s | opt -adce +; RUN: llvm-as < %s | opt -adce target endian = little target pointersize = 32 diff --git a/test/Transforms/ADCE/2003-06-11-InvalidCFG.ll b/test/Transforms/ADCE/2003-06-11-InvalidCFG.ll index 036b114740..9f28fc113a 100644 --- a/test/Transforms/ADCE/2003-06-11-InvalidCFG.ll +++ b/test/Transforms/ADCE/2003-06-11-InvalidCFG.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -adce -disable-output +; RUN: llvm-as < %s | opt -adce -disable-output %G = external global int* implementation ; Functions: diff --git a/test/Transforms/ADCE/2003-06-24-BadSuccessor.ll b/test/Transforms/ADCE/2003-06-24-BadSuccessor.ll index fb851e688b..567aca793e 100644 --- a/test/Transforms/ADCE/2003-06-24-BadSuccessor.ll +++ b/test/Transforms/ADCE/2003-06-24-BadSuccessor.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -adce -disable-output +; RUN: llvm-as < %s | opt -adce -disable-output target endian = little target pointersize = 32 diff --git a/test/Transforms/ADCE/2003-06-24-BasicFunctionality.ll b/test/Transforms/ADCE/2003-06-24-BasicFunctionality.ll index 7e4bf08090..4591261815 100644 --- a/test/Transforms/ADCE/2003-06-24-BasicFunctionality.ll +++ b/test/Transforms/ADCE/2003-06-24-BasicFunctionality.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -adce -simplifycfg | dis | not grep then: +; RUN: llvm-as < %s | opt -adce -simplifycfg | llvm-dis | not grep then: void %dead_test8(int* %data.1, int %idx.1) { entry: ; No predecessors! diff --git a/test/Transforms/ADCE/2003-09-10-UnwindInstFail.ll b/test/Transforms/ADCE/2003-09-10-UnwindInstFail.ll index 750e0b803b..72b87bb05d 100644 --- a/test/Transforms/ADCE/2003-09-10-UnwindInstFail.ll +++ b/test/Transforms/ADCE/2003-09-10-UnwindInstFail.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -adce -disable-output +; RUN: llvm-as < %s | opt -adce -disable-output implementation ; Functions: diff --git a/test/Transforms/ADCE/adcetest.ll b/test/Transforms/ADCE/adcetest.ll index 2e9cd6c6c3..28b5852606 100644 --- a/test/Transforms/ADCE/adcetest.ll +++ b/test/Transforms/ADCE/adcetest.ll @@ -1,7 +1,7 @@ ; This is the test case taken from Appel's book that illustrates a hard case ; that SCCP gets right, and when followed by ADCE, is completely eliminated ; -; RUN: as < %s | opt -sccp -adce -simplifycfg | dis | not grep br +; RUN: llvm-as < %s | opt -sccp -adce -simplifycfg | llvm-dis | not grep br int "test function"(int %i0, int %j0) { BB1: diff --git a/test/Transforms/ADCE/basictest.ll b/test/Transforms/ADCE/basictest.ll index d58150d49f..737f77526b 100644 --- a/test/Transforms/ADCE/basictest.ll +++ b/test/Transforms/ADCE/basictest.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -adce -simplifycfg | dis +; RUN: llvm-as < %s | opt -adce -simplifycfg | llvm-dis int "Test"(int %A, int %B) { BB1: diff --git a/test/Transforms/ADCE/basictest1.ll b/test/Transforms/ADCE/basictest1.ll index baacca5a8d..f2db309d32 100644 --- a/test/Transforms/ADCE/basictest1.ll +++ b/test/Transforms/ADCE/basictest1.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -adce -simplifycfg | dis +; RUN: llvm-as < %s | opt -adce -simplifycfg | llvm-dis %FILE = type { int, ubyte*, ubyte*, ubyte, ubyte, uint, uint, uint } %spec_fd_t = type { int, int, int, ubyte* } diff --git a/test/Transforms/ADCE/basictest2.ll b/test/Transforms/ADCE/basictest2.ll index 52693c462b..6df243d095 100644 --- a/test/Transforms/ADCE/basictest2.ll +++ b/test/Transforms/ADCE/basictest2.ll @@ -1,4 +1,4 @@ -; RUN: as < %s | opt -adce -simplifycfg | dis +; RUN: llvm-as < %s | opt -adce -simplifycfg | llvm-dis %FILE = type { int, ubyte*, ubyte*, ubyte, ubyte, uint, uint, uint } %spec_fd_t = type { int, int, int, ubyte* } |