From 63faed5b8e4f2755f127fcb8aa440480c0649327 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Sat, 14 Apr 2012 13:54:10 +0000 Subject: Vendor import of llvm trunk r154661: http://llvm.org/svn/llvm-project/llvm/trunk@r154661 --- test/ExecutionEngine/2002-12-16-ArgTest.ll | 2 +- test/ExecutionEngine/2003-01-04-ArgumentBug.ll | 2 +- test/ExecutionEngine/2003-01-04-LoopTest.ll | 2 +- test/ExecutionEngine/2003-01-04-PhiTest.ll | 2 +- test/ExecutionEngine/2003-01-09-SARTest.ll | 2 +- test/ExecutionEngine/2003-01-10-FUCOM.ll | 2 +- test/ExecutionEngine/2003-01-15-AlignmentTest.ll | 2 +- test/ExecutionEngine/2003-05-06-LivenessClobber.ll | 2 +- test/ExecutionEngine/2003-05-07-ArgumentTest.ll | 2 +- test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll | 2 +- test/ExecutionEngine/2003-06-04-bzip2-bug.ll | 2 +- test/ExecutionEngine/2003-06-05-PHIBug.ll | 2 +- test/ExecutionEngine/2003-08-15-AllocaAssertion.ll | 2 +- test/ExecutionEngine/2003-08-21-EnvironmentTest.ll | 2 +- .../2003-08-23-RegisterAllocatePhysReg.ll | 2 +- ...-10-18-PHINode-ConstantExpr-CondCode-Failure.ll | 2 +- test/ExecutionEngine/2005-12-02-TailCallBug.ll | 2 +- test/ExecutionEngine/2007-12-10-APIntLoadStore.ll | 2 +- test/ExecutionEngine/2008-06-05-APInt-OverAShr.ll | 2 +- test/ExecutionEngine/2010-01-15-UndefValue.ll | 2 +- test/ExecutionEngine/dg.exp | 3 - test/ExecutionEngine/fpbitcast.ll | 2 +- test/ExecutionEngine/hello.ll | 2 +- test/ExecutionEngine/hello2.ll | 2 +- test/ExecutionEngine/lit.local.cfg | 1 + test/ExecutionEngine/simplesttest.ll | 2 +- test/ExecutionEngine/simpletest.ll | 2 +- test/ExecutionEngine/stubs.ll | 2 +- test/ExecutionEngine/test-arith.ll | 2 +- test/ExecutionEngine/test-branch.ll | 2 +- .../ExecutionEngine/test-call-no-external-funcs.ll | 15 ++++ test/ExecutionEngine/test-call.ll | 2 +- test/ExecutionEngine/test-cast.ll | 2 +- test/ExecutionEngine/test-common-symbols.ll | 89 ++++++++++++++++++++++ test/ExecutionEngine/test-constantexpr.ll | 2 +- test/ExecutionEngine/test-fp-no-external-funcs.ll | 21 +++++ test/ExecutionEngine/test-fp.ll | 2 +- test/ExecutionEngine/test-global-init-nonzero.ll | 35 +++++++++ test/ExecutionEngine/test-global.ll | 35 +++++++++ test/ExecutionEngine/test-loadstore.ll | 2 +- test/ExecutionEngine/test-local.ll | 35 +++++++++ test/ExecutionEngine/test-logical.ll | 2 +- test/ExecutionEngine/test-loop.ll | 2 +- test/ExecutionEngine/test-phi.ll | 2 +- test/ExecutionEngine/test-ret.ll | 2 +- test/ExecutionEngine/test-return.ll | 8 ++ test/ExecutionEngine/test-setcond-fp.ll | 2 +- test/ExecutionEngine/test-setcond-int.ll | 2 +- test/ExecutionEngine/test-shift.ll | 2 +- 49 files changed, 279 insertions(+), 43 deletions(-) delete mode 100644 test/ExecutionEngine/dg.exp create mode 100644 test/ExecutionEngine/lit.local.cfg create mode 100644 test/ExecutionEngine/test-call-no-external-funcs.ll create mode 100644 test/ExecutionEngine/test-common-symbols.ll create mode 100644 test/ExecutionEngine/test-fp-no-external-funcs.ll create mode 100644 test/ExecutionEngine/test-global-init-nonzero.ll create mode 100644 test/ExecutionEngine/test-global.ll create mode 100644 test/ExecutionEngine/test-local.ll create mode 100644 test/ExecutionEngine/test-return.ll (limited to 'test/ExecutionEngine') diff --git a/test/ExecutionEngine/2002-12-16-ArgTest.ll b/test/ExecutionEngine/2002-12-16-ArgTest.ll index eba58ccca423..eb2fe8c04832 100644 --- a/test/ExecutionEngine/2002-12-16-ArgTest.ll +++ b/test/ExecutionEngine/2002-12-16-ArgTest.ll @@ -1,4 +1,4 @@ -; RUN: lli %s > /dev/null +; RUN: %lli %s > /dev/null @.LC0 = internal global [10 x i8] c"argc: %d\0A\00" ; <[10 x i8]*> [#uses=1] diff --git a/test/ExecutionEngine/2003-01-04-ArgumentBug.ll b/test/ExecutionEngine/2003-01-04-ArgumentBug.ll index 577226b5318b..3182193453ae 100644 --- a/test/ExecutionEngine/2003-01-04-ArgumentBug.ll +++ b/test/ExecutionEngine/2003-01-04-ArgumentBug.ll @@ -1,4 +1,4 @@ -; RUN: lli %s > /dev/null +; RUN: %lli %s > /dev/null ; XFAIL: arm define i32 @foo(i32 %X, i32 %Y, double %A) { diff --git a/test/ExecutionEngine/2003-01-04-LoopTest.ll b/test/ExecutionEngine/2003-01-04-LoopTest.ll index 61b0a1bd58ee..3e27e0607ba9 100644 --- a/test/ExecutionEngine/2003-01-04-LoopTest.ll +++ b/test/ExecutionEngine/2003-01-04-LoopTest.ll @@ -1,4 +1,4 @@ -; RUN: lli %s > /dev/null +; RUN: %lli %s > /dev/null ; XFAIL: arm define i32 @main() { diff --git a/test/ExecutionEngine/2003-01-04-PhiTest.ll b/test/ExecutionEngine/2003-01-04-PhiTest.ll index 2bc70d749f50..48576e7c83e6 100644 --- a/test/ExecutionEngine/2003-01-04-PhiTest.ll +++ b/test/ExecutionEngine/2003-01-04-PhiTest.ll @@ -1,4 +1,4 @@ -; RUN: lli %s > /dev/null +; RUN: %lli %s > /dev/null define i32 @main() { ;