2 compare-2.c from the execute part of the gcc torture tests.
11 /* Copyright (C) 2002 Free Software Foundation.
13 Ensure that the composite comparison optimization doesn't misfire
14 and attempt to combine a signed comparison with an unsigned one.
16 Written by Roger Sayle, 3rd June 2002. */
18 extern void abort (void);
23 /* If miscompiled the following may become "x == y". */
24 return (x
<=y
) && ((unsigned int)x
>= (unsigned int)y
);
28 testTortureExecute (void)