[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Instrumentation / InstrProfiling / timestamp.ll
blobaa2393695d6b85d177d4915511808bbc281403cd
1 ; RUN: opt < %s -passes=instrprof -S | FileCheck %s
3 target triple = "aarch64-unknown-linux-gnu"
5 @__profn_foo = private constant [3 x i8] c"foo"
6 ; CHECK: @__profc_foo = private global [2 x i64] zeroinitializer, section "__llvm_prf_cnts", comdat, align 8
8 define void @_Z3foov() {
9   call void @llvm.instrprof.timestamp(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @__profn_foo, i32 0, i32 0), i64 12345678, i32 2, i32 0)
10   ; CHECK: call void @__llvm_profile_set_timestamp(ptr @__profc_foo)
11   call void @llvm.instrprof.increment(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @__profn_foo, i32 0, i32 0), i64 12345678, i32 2, i32 1)
12   ret void
15 declare void @llvm.instrprof.timestamp(i8*, i64, i32, i32)
16 declare void @llvm.instrprof.increment(i8*, i64, i32, i32)