1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/CodeGen/CBackend/2002-08-26-IndirectCallTest.ll

17 lines
572 B
LLVM
Raw Normal View History

2004-11-06 22:40:51 +01:00
; RUN: llvm-as < %s | llc -march=c
2002-08-26 22:49:42 +02:00
; 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]
2003-10-23 18:01:03 +02:00
%cast100 = cast int %Y to long ; <uint> [#uses=1]
%gep100 = getelementptr int** %taskArray, long %cast100 ; <int**> [#uses=1]
2002-08-26 22:49:42 +02:00
%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
}