This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Snapshot GCC-20010108 Internal compiler error
- To: gcc-bugs at gcc dot gnu dot org
- Subject: Snapshot GCC-20010108 Internal compiler error
- From: Trond Bo <trond dot bo at dnmi dot no>
- Date: Fri, 12 Jan 2001 20:18:30 +0000
$/usr/local/gcc-20010108/bin/gcc -c -O2 -ffast-math gcc-20010108-crash.c
gcc-20010108-crash.c: In function `compare_something':
gcc-20010108-crash.c:6: Internal compiler error in
reverse_condition_maybe_unordered, at jump.c:1970
Please submit a full bug report.
See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
$ cat gcc-20010108-crash.c
static int compare_something(float x, float y)
{
if (x > y)
return 1;
return -1;
}
main() { return (compare-something( 1.01, 1.02 )); }