1 /* { dg-do compile } */ 2 /* { dg-options "-O2 -fdump-tree-profile_estimate" } */ 3 4 extern int global; 5 foo(int base)6void foo (int base) 7 { 8 if (__builtin_expect_with_probability (base == 100, 1, 0.001f)) 9 global++; 10 } 11 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"} } */ 14