New checkin

llvm-svn: 1630
This commit is contained in:
Chris Lattner 2002-02-01 05:04:58 +00:00
parent 4db2f2cbce
commit ba57d74608
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
; 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