diff options
author | Tanya Lattner <tonic@nondot.org> | 2004-11-06 23:32:43 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2004-11-06 23:32:43 +0000 |
commit | e9789ef994ba9761af87baf6e6b5953adba3968b (patch) | |
tree | 37b998e45f2895969d3156276c3d540c789609d2 | |
parent | 17f52c5c4617e6e1853fa7ac9335b277a90be7f4 (diff) |
Adding RUN lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17536 91177308-0d34-0410-b5e6-96231b3b80d8
33 files changed, 99 insertions, 0 deletions
diff --git a/test/ExecutionEngine/2002-12-16-ArgTest.ll b/test/ExecutionEngine/2002-12-16-ArgTest.ll index 512561476b..79f093e150 100644 --- a/test/ExecutionEngine/2002-12-16-ArgTest.ll +++ b/test/ExecutionEngine/2002-12-16-ArgTest.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + %.LC0 = internal global [10 x sbyte] c"argc: %d\0A\00" implementation ; Functions: diff --git a/test/ExecutionEngine/2003-01-04-ArgumentBug.ll b/test/ExecutionEngine/2003-01-04-ArgumentBug.ll index 792913d2b5..411ac524a3 100644 --- a/test/ExecutionEngine/2003-01-04-ArgumentBug.ll +++ b/test/ExecutionEngine/2003-01-04-ArgumentBug.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + implementation ; Functions: diff --git a/test/ExecutionEngine/2003-01-04-LoopTest.ll b/test/ExecutionEngine/2003-01-04-LoopTest.ll index 4aedd2dbf3..82bd5b8d51 100644 --- a/test/ExecutionEngine/2003-01-04-LoopTest.ll +++ b/test/ExecutionEngine/2003-01-04-LoopTest.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + implementation int %main() { diff --git a/test/ExecutionEngine/2003-01-04-PhiTest.ll b/test/ExecutionEngine/2003-01-04-PhiTest.ll index 34e1620131..c8c76ee6e1 100644 --- a/test/ExecutionEngine/2003-01-04-PhiTest.ll +++ b/test/ExecutionEngine/2003-01-04-PhiTest.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + int %main() { br label %Loop Loop: diff --git a/test/ExecutionEngine/2003-01-09-SARTest.ll b/test/ExecutionEngine/2003-01-09-SARTest.ll index b19a93172f..00899ec243 100644 --- a/test/ExecutionEngine/2003-01-09-SARTest.ll +++ b/test/ExecutionEngine/2003-01-09-SARTest.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + ; We were accidentally inverting the signedness of right shifts. Whoops. int %main() { diff --git a/test/ExecutionEngine/2003-01-10-FUCOM.ll b/test/ExecutionEngine/2003-01-10-FUCOM.ll index 37448f040e..0e436f4d43 100644 --- a/test/ExecutionEngine/2003-01-10-FUCOM.ll +++ b/test/ExecutionEngine/2003-01-10-FUCOM.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + int %main() { %X = add double 0.0, 1.0 diff --git a/test/ExecutionEngine/2003-01-15-AlignmentTest.ll b/test/ExecutionEngine/2003-01-15-AlignmentTest.ll index 5304a819f1..11217eb133 100644 --- a/test/ExecutionEngine/2003-01-15-AlignmentTest.ll +++ b/test/ExecutionEngine/2003-01-15-AlignmentTest.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + int %bar(sbyte* %X) { %P = alloca double ; pointer should be 4 byte aligned! diff --git a/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll b/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll index d59a63518a..6b1b0abcba 100644 --- a/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll +++ b/test/ExecutionEngine/2003-05-11-PHIRegAllocBug.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + target endian = little target pointersize = 32 diff --git a/test/ExecutionEngine/2003-06-04-bzip2-bug.ll b/test/ExecutionEngine/2003-06-04-bzip2-bug.ll index 2e71d91d39..dfe7829419 100644 --- a/test/ExecutionEngine/2003-06-04-bzip2-bug.ll +++ b/test/ExecutionEngine/2003-06-04-bzip2-bug.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + ; Testcase distilled from 256.bzip2. target endian = little diff --git a/test/ExecutionEngine/2003-06-05-PHIBug.ll b/test/ExecutionEngine/2003-06-05-PHIBug.ll index 0abe5d819c..6e4e5e1bac 100644 --- a/test/ExecutionEngine/2003-06-05-PHIBug.ll +++ b/test/ExecutionEngine/2003-06-05-PHIBug.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + ; Testcase distilled from 256.bzip2. target endian = little diff --git a/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll b/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll index 35248d1922..80b51532d8 100644 --- a/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll +++ b/test/ExecutionEngine/2003-08-15-AllocaAssertion.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + ; This testcase failed to work because two variable sized allocas confused the ; local register allocator. diff --git a/test/ExecutionEngine/2003-08-21-EnvironmentTest.ll b/test/ExecutionEngine/2003-08-21-EnvironmentTest.ll index 388f82c6d0..384acd22a9 100644 --- a/test/ExecutionEngine/2003-08-21-EnvironmentTest.ll +++ b/test/ExecutionEngine/2003-08-21-EnvironmentTest.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + ; ; Regression Test: EnvironmentTest.ll ; diff --git a/test/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll b/test/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll index fa7df62913..1a7e05e213 100644 --- a/test/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll +++ b/test/ExecutionEngine/2003-08-23-RegisterAllocatePhysReg.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + ; This testcase exposes a bug in the local register allocator where it runs out ; of registers (due to too many overlapping live ranges), but then attempts to ; use the ESP register (which is not allocatable) to hold a value. diff --git a/test/ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll b/test/ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll index 4344f9ef9d..b1cfe0d1ae 100644 --- a/test/ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll +++ b/test/ExecutionEngine/2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + %A = global int 0 int %main() { diff --git a/test/ExecutionEngine/hello.ll b/test/ExecutionEngine/hello.ll index 1f8c77be20..0f62dcbb48 100644 --- a/test/ExecutionEngine/hello.ll +++ b/test/ExecutionEngine/hello.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + %.LC0 = internal global [12 x sbyte] c"Hello World\00" implementation diff --git a/test/ExecutionEngine/hello2.ll b/test/ExecutionEngine/hello2.ll index 48d7688bcc..eaeb238ac0 100644 --- a/test/ExecutionEngine/hello2.ll +++ b/test/ExecutionEngine/hello2.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + %X = global int 7 %msg = internal global [13 x sbyte] c"Hello World\0A\00" diff --git a/test/ExecutionEngine/simplesttest.ll b/test/ExecutionEngine/simplesttest.ll index e5d8cb0aac..207229f599 100644 --- a/test/ExecutionEngine/simplesttest.ll +++ b/test/ExecutionEngine/simplesttest.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + implementation diff --git a/test/ExecutionEngine/simpletest.ll b/test/ExecutionEngine/simpletest.ll index 79ff9acaaa..47a5c64038 100644 --- a/test/ExecutionEngine/simpletest.ll +++ b/test/ExecutionEngine/simpletest.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + implementation int %bar() { ret int 0 } diff --git a/test/ExecutionEngine/test-arith.ll b/test/ExecutionEngine/test-arith.ll index c3c9ad8eba..ea34dadcbf 100644 --- a/test/ExecutionEngine/test-arith.ll +++ b/test/ExecutionEngine/test-arith.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + int %main() { %A = add sbyte 0, 12 %B = sub sbyte %A, 1 diff --git a/test/ExecutionEngine/test-branch.ll b/test/ExecutionEngine/test-branch.ll index d3559d8c75..3f08ecc4d5 100644 --- a/test/ExecutionEngine/test-branch.ll +++ b/test/ExecutionEngine/test-branch.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + ; test unconditional branch int %main() { br label %Test diff --git a/test/ExecutionEngine/test-call.ll b/test/ExecutionEngine/test-call.ll index 50f0e6e9e1..89e128a5a1 100644 --- a/test/ExecutionEngine/test-call.ll +++ b/test/ExecutionEngine/test-call.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + declare void %exit(int) diff --git a/test/ExecutionEngine/test-cast.ll b/test/ExecutionEngine/test-cast.ll index 933d1e8a52..3fe52a0091 100644 --- a/test/ExecutionEngine/test-cast.ll +++ b/test/ExecutionEngine/test-cast.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + int %foo() { diff --git a/test/ExecutionEngine/test-constantexpr.ll b/test/ExecutionEngine/test-constantexpr.ll index ce723f916f..d7d9481bee 100644 --- a/test/ExecutionEngine/test-constantexpr.ll +++ b/test/ExecutionEngine/test-constantexpr.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + ; This tests to make sure that we can evaluate wierd constant expressions %A = global int 5 %B = global int 6 diff --git a/test/ExecutionEngine/test-fp.ll b/test/ExecutionEngine/test-fp.ll index 71141da7e3..2192b1c2e6 100644 --- a/test/ExecutionEngine/test-fp.ll +++ b/test/ExecutionEngine/test-fp.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + double %test(double* %DP, double %Arg) { %D = load double* %DP diff --git a/test/ExecutionEngine/test-loadstore.ll b/test/ExecutionEngine/test-loadstore.ll index 35a2c5fcb1..ac558b0185 100644 --- a/test/ExecutionEngine/test-loadstore.ll +++ b/test/ExecutionEngine/test-loadstore.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + void %test(sbyte* %P, short* %P, int* %P, long* %P) { %V = load sbyte* %P diff --git a/test/ExecutionEngine/test-logical.ll b/test/ExecutionEngine/test-logical.ll index e6b628ac1c..bad6a9ab85 100644 --- a/test/ExecutionEngine/test-logical.ll +++ b/test/ExecutionEngine/test-logical.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + int %main() { %A = and sbyte 4, 8 diff --git a/test/ExecutionEngine/test-loop.ll b/test/ExecutionEngine/test-loop.ll index b84da830e0..059de489cb 100644 --- a/test/ExecutionEngine/test-loop.ll +++ b/test/ExecutionEngine/test-loop.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + int %main() { diff --git a/test/ExecutionEngine/test-malloc.ll b/test/ExecutionEngine/test-malloc.ll index 701d02b6fe..69c412abdc 100644 --- a/test/ExecutionEngine/test-malloc.ll +++ b/test/ExecutionEngine/test-malloc.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + int %main() { %X = malloc int ; constant size diff --git a/test/ExecutionEngine/test-phi.ll b/test/ExecutionEngine/test-phi.ll index 9e214382e0..0e4fa7a986 100644 --- a/test/ExecutionEngine/test-phi.ll +++ b/test/ExecutionEngine/test-phi.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + ; test phi node %Y = global int 6 diff --git a/test/ExecutionEngine/test-ret.ll b/test/ExecutionEngine/test-ret.ll index 02195dd464..6fbaf717d7 100644 --- a/test/ExecutionEngine/test-ret.ll +++ b/test/ExecutionEngine/test-ret.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + ; test return instructions void %test() { ret void } diff --git a/test/ExecutionEngine/test-setcond-fp.ll b/test/ExecutionEngine/test-setcond-fp.ll index 66724d8954..e024345944 100644 --- a/test/ExecutionEngine/test-setcond-fp.ll +++ b/test/ExecutionEngine/test-setcond-fp.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + int %main() { %double1 = add double 0.0, 0.0 diff --git a/test/ExecutionEngine/test-setcond-int.ll b/test/ExecutionEngine/test-setcond-int.ll index 2de9d4d630..6436131185 100644 --- a/test/ExecutionEngine/test-setcond-int.ll +++ b/test/ExecutionEngine/test-setcond-int.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + int %main() { %int1 = add int 0, 0 diff --git a/test/ExecutionEngine/test-shift.ll b/test/ExecutionEngine/test-shift.ll index e67608ef4d..c55629d624 100644 --- a/test/ExecutionEngine/test-shift.ll +++ b/test/ExecutionEngine/test-shift.ll @@ -1,3 +1,6 @@ +; RUN: llvm-as -f %s -o %t.bc +; RUN: lli %t.bc > /dev/null + ; test shifts int %main() { %shamt = add ubyte 0, 1 |