no-counters.ll 266 B

12345678910
  1. ;; No instrumentation should be emitted if there are no counter increments.
  2. ; RUN: opt < %s -instrprof -S | FileCheck %s
  3. ; CHECK-NOT: @__llvm_profile_counters
  4. ; CHECK-NOT: @__llvm_profile_data
  5. ; CHECK-NOT: @__llvm_profile_runtime
  6. define void @foo() {
  7. ret void
  8. }