xref: /llvm-project/clang/test/CoverageMapping/unused_function_no_runtime_hook.cpp (revision d6aed77f0d19664be48d531552692520ae2a6f1a)
1 // RUN: %clang -target x86_64-unknown-fuchsia -fprofile-instr-generate -fcoverage-mapping -emit-llvm -S %s -o - | FileCheck %s
2 
3 // CHECK-NOT: @__llvm_profile_runtime
f0()4 static int f0() {
5   return 100;
6 }
7