blob: 6e34209a0e362fa8ad675a1669ab686406be3384 [file] [log] [blame]
Dan Gohmanf2f6ce62009-09-11 18:01:28 +00001; RUN: opt < %s -print-callgraph -disable-output |& \
Duncan Sands3ee8fc92008-09-23 12:47:39 +00002; RUN: grep {Calls function 'callee'} | count 2
Duncan Sands99c1a7c2008-09-09 12:40:47 +00003
4define internal void @callee(...) {
5entry:
6 unreachable
7}
8
9define void @caller() {
10entry:
11 call void (...)* @callee( void (...)* @callee )
12 unreachable
13}