summaryrefslogtreecommitdiff
path: root/test/Profile/c-avoid-direct-call.c
blob: cd02e714dbe17afa19dc410d6b037d0e1484b567 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Check the value profiling instrinsics emitted by instrumentation.

// 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 %s

void foo();

int main(void) {
// CHECK-NOT: call void @__llvm_profile_instrument_target
  foo(21);
  return 0;
}