repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Implement bswap
[llvm/msp430.git]
/
test
/
Other
/
2002-01-31-CallGraph.ll
blob
bb4c23e8779c1f718f675f1f47c7790f1faffe89
1
; Call graph construction crash: Not handling indirect calls right
2
;
3
; RUN: llvm-as < %s | opt -analyze -print-callgraph >& /dev/null
4
;
5
6
%FunTy = type i32 (i32)
7
8
define void @invoke(%FunTy* %x) {
9
%foo = call i32 %x( i32 123 ) ; <i32> [#uses=0]
10
ret void
11
}
12
13