summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/ieee/compare-fp-2.c
blob: 1f78a435a925283109aa847500df3f5b77d84878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Copyright (C) 2004 Free Software Foundation.

   Ensure that the composite comparison optimization doesn't misfire
   and attempt to combine an integer comparison with a floating-point one.

   Written by Paolo Bonzini, 26th May 2004.  */

extern void abort (void);

int
foo (double x, double y)
{
  /* If miscompiled the following may become false.  */
  return (x > y) && ((int)x == (int)y);
}

int
main ()
{
  if (! foo (1.3,1.0))
    abort ();
  return 0;
}