[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Profile / misexpect-branch-unpredictable.c
blob6c4f90146a2aee92b7dc586deb06c16a3938d87b
1 // Test that misexpect emits no warning when prediction is correct
3 // RUN: llvm-profdata merge %S/Inputs/misexpect-branch.proftext -o %t.profdata
4 // RUN: %clang_cc1 %s -O2 -o - -disable-llvm-passes -emit-llvm -fprofile-instrument-use-path=%t.profdata -verify -Wmisexpect
6 // expected-no-diagnostics
7 #define unpredictable(x) __builtin_unpredictable(!!(x))
9 int foo(int);
10 int baz(int);
11 int buzz();
13 const int inner_loop = 100;
14 const int outer_loop = 2000;
16 int bar() {
17 int rando = buzz();
18 int x = 0;
19 if (unpredictable(rando % (outer_loop * inner_loop) == 0)) {
20 x = baz(rando);
21 } else {
22 x = foo(50);
24 return x;