bolt/deps/llvm-18.1.8/llvm/test/Other/2002-01-31-CallGraph.ll

14 lines
280 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; Call graph construction crash: Not handling indirect calls right
;
; RUN: opt < %s -passes=print-callgraph > /dev/null 2>&1
;
%FunTy = type i32 (i32)
define void @invoke(ptr %x) {
%foo = call i32 %x( i32 123 ) ; <i32> [#uses=0]
ret void
}