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