mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 05:32:25 +00:00
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:
parent
17f52c5c46
commit
e9789ef994
@ -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:
|
||||
|
@ -1,3 +1,6 @@
|
||||
; RUN: llvm-as -f %s -o %t.bc
|
||||
; RUN: lli %t.bc > /dev/null
|
||||
|
||||
|
||||
implementation ; Functions:
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
; RUN: llvm-as -f %s -o %t.bc
|
||||
; RUN: lli %t.bc > /dev/null
|
||||
|
||||
implementation
|
||||
|
||||
int %main() {
|
||||
|
@ -1,3 +1,6 @@
|
||||
; RUN: llvm-as -f %s -o %t.bc
|
||||
; RUN: lli %t.bc > /dev/null
|
||||
|
||||
int %main() {
|
||||
br label %Loop
|
||||
Loop:
|
||||
|
@ -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() {
|
||||
|
@ -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
|
||||
|
@ -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!
|
||||
|
@ -1,3 +1,6 @@
|
||||
; RUN: llvm-as -f %s -o %t.bc
|
||||
; RUN: lli %t.bc > /dev/null
|
||||
|
||||
target endian = little
|
||||
target pointersize = 32
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
; RUN: llvm-as -f %s -o %t.bc
|
||||
; RUN: lli %t.bc > /dev/null
|
||||
|
||||
;
|
||||
; Regression Test: EnvironmentTest.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.
|
||||
|
@ -1,3 +1,6 @@
|
||||
; RUN: llvm-as -f %s -o %t.bc
|
||||
; RUN: lli %t.bc > /dev/null
|
||||
|
||||
%A = global int 0
|
||||
|
||||
int %main() {
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -1,3 +1,6 @@
|
||||
; RUN: llvm-as -f %s -o %t.bc
|
||||
; RUN: lli %t.bc > /dev/null
|
||||
|
||||
|
||||
implementation
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
; RUN: llvm-as -f %s -o %t.bc
|
||||
; RUN: lli %t.bc > /dev/null
|
||||
|
||||
implementation
|
||||
|
||||
int %bar() { ret int 0 }
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -1,3 +1,6 @@
|
||||
; RUN: llvm-as -f %s -o %t.bc
|
||||
; RUN: lli %t.bc > /dev/null
|
||||
|
||||
|
||||
declare void %exit(int)
|
||||
|
||||
|
@ -1,3 +1,6 @@
|
||||
; RUN: llvm-as -f %s -o %t.bc
|
||||
; RUN: lli %t.bc > /dev/null
|
||||
|
||||
|
||||
|
||||
int %foo() {
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -1,3 +1,6 @@
|
||||
; RUN: llvm-as -f %s -o %t.bc
|
||||
; RUN: lli %t.bc > /dev/null
|
||||
|
||||
|
||||
|
||||
int %main() {
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 }
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user