0716b0d8c6f2f2688b368f0190a149c02736e941
[oota-llvm.git] / test / Instrumentation / InstrProfiling / no-counters.ll
1 ;; No instrumentation should be emitted if there are no counter increments.
2
3 ; RUN: opt < %s -instrprof -S | FileCheck %s
4 ; CHECK-NOT: @__llvm_profile_counters
5 ; CHECK-NOT: @__llvm_profile_data
6 ; CHECK-NOT: @__llvm_profile_runtime
7
8 define void @foo() {
9   ret void
10 }