diff options
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r-- | test/ExecutionEngine/2003-05-06-LivenessClobber.llx | 2 | ||||
-rw-r--r-- | test/ExecutionEngine/2003-05-07-ArgumentTest.llx | 2 | ||||
-rw-r--r-- | test/ExecutionEngine/2005-12-02-TailCallBug.ll | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/ExecutionEngine/2003-05-06-LivenessClobber.llx b/test/ExecutionEngine/2003-05-06-LivenessClobber.llx index 3164dd8..ea3f14b 100644 --- a/test/ExecutionEngine/2003-05-06-LivenessClobber.llx +++ b/test/ExecutionEngine/2003-05-06-LivenessClobber.llx @@ -1,6 +1,6 @@ ; This testcase shoudl return with an exit code of 1. ; -; RUN: llvm-as < %s | not lli +; RUN: llvm-upgrade < %s | llvm-as | not lli %test = global long 0 implementation diff --git a/test/ExecutionEngine/2003-05-07-ArgumentTest.llx b/test/ExecutionEngine/2003-05-07-ArgumentTest.llx index 47b40c3..e5dd04e 100644 --- a/test/ExecutionEngine/2003-05-07-ArgumentTest.llx +++ b/test/ExecutionEngine/2003-05-07-ArgumentTest.llx @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | lli - test +; RUN: llvm-upgrade < %s | llvm-as | lli - test implementation diff --git a/test/ExecutionEngine/2005-12-02-TailCallBug.ll b/test/ExecutionEngine/2005-12-02-TailCallBug.ll index fb3b676..447f49e 100644 --- a/test/ExecutionEngine/2005-12-02-TailCallBug.ll +++ b/test/ExecutionEngine/2005-12-02-TailCallBug.ll @@ -1,5 +1,5 @@ ; PR672 -; RUN: llvm-as < %s | lli +; RUN: llvm-upgrade < %s | llvm-as | lli int %main(){ %f = cast int (int, int*, int)* %check_tail to int* |