blob: 456ffa25d7bfdd1142468ef27917453e822146ee [file] [log] [blame]
Duncan Sands3ee8fc92008-09-23 12:47:39 +00001; RUN: llvm-as < %s | opt -print-callgraph -disable-output |& \
2; 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}