blob: 396c590b2913c572e313689f3160e7e631b6f518 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -ffast-math -fdump-tree-reassoc1" } */
double test2 (double x, double y, double ddj, int b)
{
double tmp1, tmp2, sum;
sum = 0.0;
if (b)
sum = 1.0;
tmp1 = sum/ddj;
tmp2 = x/ddj;
return tmp1 + y + tmp2;
}
/* { dg-final { scan-tree-dump-times "/" 1 "reassoc1" } } */