1 // Test that misexpect emits no warning when condition is not a compile-time constant
3 // RUN: llvm-profdata merge %S/Inputs/misexpect-branch-nonconst-expect-arg.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
11 const int inner_loop
= 100;
12 const int outer_loop
= 2000;
17 if (__builtin_expect(rando
% (outer_loop
* inner_loop
) == 0, buzz())) {