Home | History | Annotate | Download | only in CallGraph
      1 ; RUN: opt < %s -print-callgraph -disable-output |& \
      2 ; RUN:   grep {calls function 'callee'} | count 2
      3 
      4 define internal void @callee(...) {
      5 entry:
      6 	unreachable
      7 }
      8 
      9 define void @caller() {
     10 entry:
     11 	call void (...)* @callee( void (...)* @callee )
     12 	unreachable
     13 }
     14