hanchenye-llvm-project/llvm/test/Other/2002-01-31-CallGraph.ll

14 lines
282 B
LLVM
Raw Normal View History

2002-02-01 13:04:58 +08:00
; Call graph construction crash: Not handling indirect calls right
;
; RUN: opt < %s -analyze -print-callgraph >& /dev/null
2002-02-01 13:04:58 +08:00
;
%FunTy = type i32 (i32)
2002-02-01 13:04:58 +08:00
define void @invoke(%FunTy* %x) {
%foo = call i32 %x( i32 123 ) ; <i32> [#uses=0]
ret void
}
2002-02-01 13:04:58 +08:00