Adding RUN lines.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17536 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tanya Lattner 2004-11-06 23:32:43 +00:00
parent 17f52c5c46
commit e9789ef994
33 changed files with 99 additions and 0 deletions

View File

@ -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:

View File

@ -1,3 +1,6 @@
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
implementation ; Functions:

View File

@ -1,3 +1,6 @@
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
implementation
int %main() {

View File

@ -1,3 +1,6 @@
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
int %main() {
br label %Loop
Loop:

View File

@ -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() {

View File

@ -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

View File

@ -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!

View File

@ -1,3 +1,6 @@
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
target endian = little
target pointersize = 32

View File

@ -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

View File

@ -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

View File

@ -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.

View File

@ -1,3 +1,6 @@
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
;
; Regression Test: EnvironmentTest.ll
;

View File

@ -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.

View File

@ -1,3 +1,6 @@
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
%A = global int 0
int %main() {

View File

@ -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

View File

@ -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"

View File

@ -1,3 +1,6 @@
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
implementation

View File

@ -1,3 +1,6 @@
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
implementation
int %bar() { ret int 0 }

View File

@ -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

View File

@ -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

View File

@ -1,3 +1,6 @@
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
declare void %exit(int)

View File

@ -1,3 +1,6 @@
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
int %foo() {

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -1,3 +1,6 @@
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
int %main() {

View File

@ -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

View File

@ -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

View File

@ -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 }

View File

@ -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

View File

@ -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

View File

@ -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