2 // RUN: %clang_pgogen=%t.prof/ -o %t.gen.cs -O2 %s
4 // RUN: llvm-profdata merge -o %t.cs.profdata %t.prof/
5 // Check context sensitive profile
6 // RUN: %clang_profuse=%t.cs.profdata -O2 -emit-llvm -S %s -o - | FileCheck %s --check-prefix=CS
8 // RUN: %clang_profgen=%t.profraw -o %t.gen.cis -O2 %s
9 // RUN: %run %t.gen.cis
10 // RUN: llvm-profdata merge -o %t.cis.profdata %t.profraw
11 // Check context insensitive profile
12 // RUN: %clang_profuse=%t.cis.profdata -O2 -emit-llvm -S %s -o - | FileCheck %s --check-prefix=CIS
15 static void toggle(int t
) {
24 // CS: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[PD1:[0-9]+]]
25 // CIS: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[PD:[0-9]+]]
27 // CS: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[PD2:[0-9]+]]
28 // CIS: br i1 %{{.*}}, label %{{.*}}, label %{{.*}}, !prof ![[PD:[0-9]+]]
33 // CS: ![[PD1]] = !{!"branch_weights", i32 0, i32 1}
34 // CS: ![[PD2]] = !{!"branch_weights", i32 1, i32 0}
35 // CIS: ![[PD]] = !{!"branch_weights", i32 2, i32 2}