Home | History | Annotate | Download | only in CallGraph
      1 ; RUN: opt < %s -print-callgraph -disable-output 2>&1 | FileCheck %s
      2 ; RUN: opt < %s -passes=print-callgraph -disable-output 2>&1 | FileCheck %s
      3 
      4 ; Check that intrinsics aren't added to the call graph
      5 
      6 declare void @llvm.memcpy.p0i8.p0i8.i32(i8*, i8*, i32, i32, i1)
      7 
      8 define void @f(i8* %out, i8* %in) {
      9   call void @llvm.memcpy.p0i8.p0i8.i32(i8* %out, i8* %in, i32 100, i32 4, i1 false)
     10   ret void
     11 }
     12 
     13 ; CHECK: Call graph node for function: 'f'
     14 ; CHECK-NOT: calls function 'llvm.memcpy.p0i8.p0i8.i32'
     15