12 lines · c
1// Check the value profiling intrinsics emitted by instrumentation.2 3// RUN: %clang_cc1 -triple x86_64-apple-macosx10.9 -main-file-name c-avoid-direct-call.c %s -o - -emit-llvm -fprofile-instrument=clang -mllvm -enable-value-profiling | FileCheck %s4 5void foo();6 7int main(void) {8// CHECK-NOT: call void @__llvm_profile_instrument_target9 foo(21);10 return 0;11}12