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 likely(x) __builtin_expect(!!(x), 1)
8 #define unlikely(x) __builtin_expect(!!(x), 0)
14 const int inner_loop
= 100;
15 const int outer_loop
= 2000;
20 if (unlikely(rando
% (outer_loop
* inner_loop
) == 0)) {