xref: /llvm-project/clang/test/CoverageMapping/unused_function_no_runtime_hook.cpp (revision c7f91e227a799dfee05962bb108274dbfe809fee)
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
4 static int f0() {
5   return 100;
6 }
7