diff options
Diffstat (limited to 'test/Instrumentation/InstrProfiling/noruntime.ll')
-rw-r--r-- | test/Instrumentation/InstrProfiling/noruntime.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Instrumentation/InstrProfiling/noruntime.ll b/test/Instrumentation/InstrProfiling/noruntime.ll index e69445d..f0619c8 100644 --- a/test/Instrumentation/InstrProfiling/noruntime.ll +++ b/test/Instrumentation/InstrProfiling/noruntime.ll @@ -2,14 +2,14 @@ ; RUN: opt < %s -instrprof -S | FileCheck %s ; CHECK-NOT: define {{.*}} @__llvm_profile_runtime_user() -; CHECK-NOT: load i32* @__llvm_profile_runtime +; CHECK-NOT: load i32, i32* @__llvm_profile_runtime @__llvm_profile_runtime = global i32 0, align 4 @__llvm_profile_name_foo = hidden constant [3 x i8] c"foo" define void @foo() { - call void @llvm.instrprof.increment(i8* getelementptr inbounds ([3 x i8]* @__llvm_profile_name_foo, i32 0, i32 0), i64 0, i32 1, i32 0) + call void @llvm.instrprof.increment(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @__llvm_profile_name_foo, i32 0, i32 0), i64 0, i32 1, i32 0) ret void } |