blob: 3977a5c5b46b4b18c5eeedabd57a8fffa7cc47b4 [file] [log] [blame]
Dan Gohmanb1e1e822009-09-08 16:50:01 +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}