mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-28 14:10:55 +00:00
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3510 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
93aeea3748
commit
aa250b8067
14
test/CBackend/2002-08-26-IndirectCallTest.ll
Normal file
14
test/CBackend/2002-08-26-IndirectCallTest.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; Indirect function call test... found by Joel & Brian
|
||||
;
|
||||
|
||||
%taskArray = uninitialized global int*
|
||||
|
||||
void %test(int %X) {
|
||||
%Y = add int %X, -1 ; <int>:1 [#uses=3]
|
||||
%cast100 = cast int %Y to uint ; <uint> [#uses=1]
|
||||
%gep100 = getelementptr int** %taskArray, uint %cast100 ; <int**> [#uses=1]
|
||||
%fooPtr = load int** %gep100 ; <int*> [#uses=1]
|
||||
%cast101 = cast int* %fooPtr to void (int)* ; <void (int)*> [#uses=1]
|
||||
call void %cast101( int 1000 )
|
||||
ret void
|
||||
}
|
14
test/CodeGen/CBackend/2002-08-26-IndirectCallTest.ll
Normal file
14
test/CodeGen/CBackend/2002-08-26-IndirectCallTest.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; Indirect function call test... found by Joel & Brian
|
||||
;
|
||||
|
||||
%taskArray = uninitialized global int*
|
||||
|
||||
void %test(int %X) {
|
||||
%Y = add int %X, -1 ; <int>:1 [#uses=3]
|
||||
%cast100 = cast int %Y to uint ; <uint> [#uses=1]
|
||||
%gep100 = getelementptr int** %taskArray, uint %cast100 ; <int**> [#uses=1]
|
||||
%fooPtr = load int** %gep100 ; <int*> [#uses=1]
|
||||
%cast101 = cast int* %fooPtr to void (int)* ; <void (int)*> [#uses=1]
|
||||
call void %cast101( int 1000 )
|
||||
ret void
|
||||
}
|
Loading…
Reference in New Issue
Block a user