1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/Regression/Other/2002-01-31-CallGraph.ll
Chris Lattner 647edf79a4 New checkin
llvm-svn: 1630
2002-02-01 05:04:58 +00:00

16 lines
222 B
LLVM

; Call graph construction crash: Not handling indirect calls right
;
; RUN: analyze -callgraph %s
;
%FunTy = type int(int)
implementation
void "invoke"(%FunTy *%x)
begin
%foo = call %FunTy* %x(int 123)
ret void
end