You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
282 B
14 lines
282 B
4 months ago
|
; Call graph construction crash: Not handling indirect calls right
|
||
|
;
|
||
|
; RUN: opt < %s -analyze -print-callgraph >& /dev/null
|
||
|
;
|
||
|
|
||
|
%FunTy = type i32 (i32)
|
||
|
|
||
|
define void @invoke(%FunTy* %x) {
|
||
|
%foo = call i32 %x( i32 123 ) ; <i32> [#uses=0]
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
|