bolt/deps/llvm-18.1.8/llvm/test/Analysis/CallGraph/2008-09-09-DirectCall.ll
2025-02-14 19:21:04 +01:00

17 lines
404 B
LLVM

; RUN: opt < %s -passes=print-callgraph -disable-output 2>&1 | FileCheck %s
; CHECK: Call graph node <<null function>>
; CHECK: CS<{{.*}}> calls function 'callee'
; CHECK: Call graph node for function: 'caller'
; CHECK: CS<{{.*}}> calls function 'callee'
define internal void @callee(...) {
entry:
unreachable
}
define void @caller() {
entry:
call void (...) @callee( ptr @callee )
unreachable
}