1 // Test that function entry counts are set correctly.
3 // RUN: llvm-profdata merge %S/Inputs/func-entry.proftext -o %t.profdata
4 // RUN: %clang_cc1 %s -o - -disable-llvm-passes -emit-llvm -fprofile-instrument-use-path=%t.profdata | FileCheck %s
8 // CHECK: @foo() #{{[0-9]}} !prof [[FOO:![0-9]+]]
11 // CHECK: @main() #{{[0-9]}} !prof [[MAIN:![0-9]+]]
14 for (i
= 0; i
< 10000; i
++) foo();
18 // CHECK: [[FOO]] = !{!"function_entry_count", i64 1000}
19 // CHECK: [[MAIN]] = !{!"function_entry_count", i64 1}