[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Profile / func-entry.c
blob4a4ca2288352bf8a84743c1a44996b4e4d57210c
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
6 void foo(void);
8 // CHECK: @foo() #{{[0-9]}} !prof [[FOO:![0-9]+]]
9 void foo() { return; }
11 // CHECK: @main() #{{[0-9]}} !prof [[MAIN:![0-9]+]]
12 int main() {
13 int i;
14 for (i = 0; i < 10000; i++) foo();
15 return 0;
18 // CHECK: [[FOO]] = !{!"function_entry_count", i64 1000}
19 // CHECK: [[MAIN]] = !{!"function_entry_count", i64 1}