mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
make this test more interesting
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31619 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f196839562
commit
42b51e4ae2
@ -3,9 +3,40 @@
|
||||
|
||||
; XFAIL: *
|
||||
|
||||
int *%test(int *%X, int *%dest) {
|
||||
int *%test0(int *%X, int *%dest) {
|
||||
%Y = getelementptr int* %X, int 4
|
||||
%A = load int* %Y
|
||||
store int %A, int* %dest
|
||||
ret int* %Y
|
||||
}
|
||||
|
||||
int *%test1(int *%X, int *%dest) {
|
||||
%Y = getelementptr int* %X, int 4
|
||||
%A = load int* %Y
|
||||
store int %A, int* %dest
|
||||
ret int* %Y
|
||||
}
|
||||
|
||||
short *%test2(short *%X, int *%dest) {
|
||||
%Y = getelementptr short* %X, int 4
|
||||
%A = load short* %Y
|
||||
%B = cast short %A to int
|
||||
store int %B, int* %dest
|
||||
ret short* %Y
|
||||
}
|
||||
|
||||
ushort *%test3(ushort *%X, int *%dest) {
|
||||
%Y = getelementptr ushort* %X, int 4
|
||||
%A = load ushort* %Y
|
||||
%B = cast ushort %A to int
|
||||
store int %B, int* %dest
|
||||
ret ushort* %Y
|
||||
}
|
||||
|
||||
|
||||
long *%test4(long *%X, long *%dest) {
|
||||
%Y = getelementptr long* %X, int 4
|
||||
%A = load long* %Y
|
||||
store long %A, long* %dest
|
||||
ret long* %Y
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user