Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / predict-19.c
blob38ca25a16032e55975d092a4eed580fabdcbbc3b
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-profile_estimate" } */
4 extern int global;
6 void foo (int base)
8 if (__builtin_expect_with_probability (base == 100, 1, 0.001f))
9 global++;
12 /* { dg-final { scan-tree-dump "first match heuristics: 0.10%" "profile_estimate"} } */
13 /* { dg-final { scan-tree-dump "__builtin_expect_with_probability heuristics of edge .*->.*: 0.10%" "profile_estimate"} } */