aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Instrumentation/InstrProfiling/timestamp.ll
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/test/Instrumentation/InstrProfiling/timestamp.ll')
-rw-r--r--llvm/test/Instrumentation/InstrProfiling/timestamp.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/Instrumentation/InstrProfiling/timestamp.ll b/llvm/test/Instrumentation/InstrProfiling/timestamp.ll
index aa23936..c08ba44 100644
--- a/llvm/test/Instrumentation/InstrProfiling/timestamp.ll
+++ b/llvm/test/Instrumentation/InstrProfiling/timestamp.ll
@@ -6,11 +6,11 @@ target triple = "aarch64-unknown-linux-gnu"
; CHECK: @__profc_foo = private global [2 x i64] zeroinitializer, section "__llvm_prf_cnts", comdat, align 8
define void @_Z3foov() {
- 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)
+ call void @llvm.instrprof.timestamp(ptr @__profn_foo, i64 12345678, i32 2, i32 0)
; CHECK: call void @__llvm_profile_set_timestamp(ptr @__profc_foo)
- 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)
+ call void @llvm.instrprof.increment(ptr @__profn_foo, i64 12345678, i32 2, i32 1)
ret void
}
-declare void @llvm.instrprof.timestamp(i8*, i64, i32, i32)
-declare void @llvm.instrprof.increment(i8*, i64, i32, i32)
+declare void @llvm.instrprof.timestamp(ptr, i64, i32, i32)
+declare void @llvm.instrprof.increment(ptr, i64, i32, i32)