1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-gimple" } */
3 
4 void g (void);
5 
6 void
f(int i,float j,int i2,float j2)7 f (int i, float j, int i2, float j2)
8 {
9   if (__builtin_expect ((i * i2) > 0 || (j * j2), 0))
10     ;
11   else
12     g ();
13 }
14 
15 /* { dg-final { scan-tree-dump-times {builtin_expect[^\n]*, 0\);\n[^\n]*if} 2 "gimple"} } */
16