xref: /aosp_15_r20/external/llvm/test/Analysis/CallGraph/2008-09-09-UsedByGlobal.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: opt < %s -print-callgraph -disable-output 2>&1 | FileCheck %s
2
3@a = global void ()* @f		; <void ()**> [#uses=0]
4
5; CHECK: calls function 'f'
6
7define internal void @f() {
8	unreachable
9}
10