1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -mfpmath=387 -mfancy-math-387" } */
       3  
       4  double foo(double x, double y)
       5  {
       6    double t = -x * y;
       7    return -t;
       8  }
       9  
      10  /* { dg-final { scan-assembler-not "fchs" } } */