Re: Value not equal to itself

2012-05-26 Thread Andrew Pinski
On Sat, May 26, 2012 at 8:25 PM, Jordan Foster wrote: > gcc -v; gcc version 4.2.1 20070831 patched [FreeBSD] > uname -srip; FreeBSD 9.0-RELEASE i386 GENERI > Compiler command; gcc47 minimalErroringCode.cpp -o minimalErroringCode > Test; ./minimalErroringCode > Expected; no output > Result; Asserti

Re: Value not equal to itself

2012-05-26 Thread Jordan Foster
On 5/26/12, Jordan Foster wrote: > gcc -v; gcc version 4.2.1 20070831 patched [FreeBSD] > uname -srip; FreeBSD 9.0-RELEASE i386 GENERI > Compiler command; gcc47 minimalErroringCode.cpp -o minimalErroringCode > Test; ./minimalErroringCode > Expected; no output > Result; Assertion failed: ((buffer[0

Value not equal to itself

2012-05-26 Thread Jordan Foster
gcc -v; gcc version 4.2.1 20070831 patched [FreeBSD] uname -srip; FreeBSD 9.0-RELEASE i386 GENERI Compiler command; gcc47 minimalErroringCode.cpp -o minimalErroringCode Test; ./minimalErroringCode Expected; no output Result; Assertion failed: ((buffer[0] = 0xFF) && buffer[0] == 0xFF), function main

[Bug c/31008] float value not equal to itself after assignment

2007-03-01 Thread rguenth at gcc dot gnu dot org
--- Comment #1 from rguenth at gcc dot gnu dot org 2007-03-01 16:43 --- *** This bug has been marked as a duplicate of 323 *** -- rguenth at gcc dot gnu dot org changed: What|Removed |Added

[Bug c/31008] New: float value not equal to itself after assignment

2007-03-01 Thread gcczilla at achurch dot org
s not properly converted to float, the same problem exists when the test program is compiled with -ffast-math to use the fsqrt instruction directly: the high-precision result of fsqrt is left on the stack for the comparison, without being converted to a single-precision value.) -- Su