diff options
Diffstat (limited to 'test/Transforms/GCSE')
-rw-r--r-- | test/Transforms/GCSE/2002-05-14-OperandSwap.ll | 2 | ||||
-rw-r--r-- | test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll | 2 | ||||
-rw-r--r-- | test/Transforms/GCSE/2003-06-13-LoadStoreEliminate.ll | 2 | ||||
-rw-r--r-- | test/Transforms/GCSE/gcsetests.ll | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/test/Transforms/GCSE/2002-05-14-OperandSwap.ll b/test/Transforms/GCSE/2002-05-14-OperandSwap.ll index 57ac538..5e893bf 100644 --- a/test/Transforms/GCSE/2002-05-14-OperandSwap.ll +++ b/test/Transforms/GCSE/2002-05-14-OperandSwap.ll @@ -1,7 +1,7 @@ ; This entire chain of computation should be optimized away, but ; wasn't because the two multiplies were not detected as being identical. ; -; RUN: as < %s | opt -gcse -instcombine -dce | dis | not grep sub +; RUN: llvm-as < %s | opt -gcse -instcombine -dce | llvm-dis | not grep sub implementation ; Functions: diff --git a/test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll b/test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll index 1f4ec5b..9d09911 100644 --- a/test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll +++ b/test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll @@ -1,7 +1,7 @@ ; This testcase shows a bug where an common subexpression exists, but there ; is no shared dominator block that the expression can be hoisted out to. ; -; RUN: as < %s | opt -gcse | dis +; RUN: llvm-as < %s | opt -gcse | llvm-dis int "test"(int %X, int %Y) { %Z = add int %X, %Y diff --git a/test/Transforms/GCSE/2003-06-13-LoadStoreEliminate.ll b/test/Transforms/GCSE/2003-06-13-LoadStoreEliminate.ll index fa83e2d..3c3b17d 100644 --- a/test/Transforms/GCSE/2003-06-13-LoadStoreEliminate.ll +++ b/test/Transforms/GCSE/2003-06-13-LoadStoreEliminate.ll @@ -1,7 +1,7 @@ ; This testcase shows a bug where an common subexpression exists, but there ; is no shared dominator block that the expression can be hoisted out to. ; -; RUN: as < %s | opt -load-vn -gcse | dis | not grep load +; RUN: llvm-as < %s | opt -load-vn -gcse | llvm-dis | not grep load int %test(int* %P) { store int 5, int* %P diff --git a/test/Transforms/GCSE/gcsetests.ll b/test/Transforms/GCSE/gcsetests.ll index 26a5382..8ae62d6 100644 --- a/test/Transforms/GCSE/gcsetests.ll +++ b/test/Transforms/GCSE/gcsetests.ll @@ -1,6 +1,6 @@ ; Various test cases to ensure basic functionality is working for GCSE -; RUN: as < %s | opt -gcse +; RUN: llvm-as < %s | opt -gcse implementation |