1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/Regression/CodeGen/CBackend/2002-08-26-IndirectCallTest.ll
Tanya Lattner 47772bf0e5 Adding RUN lines.
llvm-svn: 17527
2004-11-06 21:40:51 +00:00

17 lines
572 B
LLVM

; RUN: llvm-as < %s | llc -march=c
; 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 long ; <uint> [#uses=1]
%gep100 = getelementptr int** %taskArray, long %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
}