* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / builtin-expect-1.c
blob67d56849aed7c6d6c498dac5f1670edd4ccf9132
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-gimple" } */
4 void g (void);
6 void
7 f (int i, float j, int i2, float j2)
8 {
9 if (__builtin_expect ((i * i2) > 0 && (j * j2), 0))
10 g ();
13 /* { dg-final { scan-tree-dump-times {builtin_expect[^\n]*, 0\);\n[^\n]*if} 2 "gimple"} } */