repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Inliner pass header file was moved.
[llvm-complete.git]
/
test
/
Other
/
2002-01-31-CallGraph.ll
blob
61c1277d6420e9d39cb41c17e78b51c55c224b62
1
; Call graph construction crash: Not handling indirect calls right
2
;
3
; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -callgraph
4
;
5
6
%FunTy = type int(int)
7
8
implementation
9
10
void "invoke"(%FunTy *%x)
11
begin
12
%foo = call %FunTy* %x(int 123)
13
ret void
14
end
15