[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / Instrumentation / InstrProfiling / noruntime.ll
blobe5227e4fd78d72e55c3c637e27d5fa4ca6f1e354
1 ;; Check that we don't emit the runtime hooks if the user provided them.
3 ; RUN: opt < %s -passes=instrprof -S | FileCheck %s
4 ; CHECK-NOT: define {{.*}} @__llvm_profile_runtime_user()
5 ; CHECK-NOT: load i32, ptr @__llvm_profile_runtime
7 @__llvm_profile_runtime = global i32 0, align 4
9 @__profn_foo = private constant [3 x i8] c"foo"
11 define void @foo() {
12   call void @llvm.instrprof.increment(ptr @__profn_foo, i64 0, i32 1, i32 0)
13   ret void
16 declare void @llvm.instrprof.increment(ptr, i64, i32, i32)