blob: 39b259541de4fd1c8ea6c8b578e1a582f12ed3ed [file] [log] [blame]
/* { dg-do run { target i?86-*-* } } */
/* { dg-options "-O -ffast-math -mcpu=i486" } */
/* Test that floating point greater-than tests are compiled correctly with
-ffast-math. */
extern void abort (void);
static int gt (double a, double b)
{
if (a > b)
return 4;
return 0;
}
static double zero = 0.0;
int main ()
{
if (gt (zero, zero))
abort ();
return 0;
}