blob: a3afc379c5a6880204f4bc578680d9b752c47116 [file] [log] [blame]
Duncan Sandse65d39a2008-09-19 07:57:09 +00001; RUN: llvm-as < %s | opt -callgraph -disable-output |& grep {Calls function 'callee'} | count 2
Duncan Sands99c1a7c2008-09-09 12:40:47 +00002
3define internal void @callee(...) {
4entry:
5 unreachable
6}
7
8define void @caller() {
9entry:
10 call void (...)* @callee( void (...)* @callee )
11 unreachable
12}