------- Comment #10 from bonzini at gnu dot org 2009-08-01 23:59 ------- Minimized testcase:
extern double host_frametime;
extern float pitchvel;
V_DriftPitch (float delta, float move)
{
if (!delta)
move = host_frametime;
if (delta > 0)
;
else if (delta < 0 && move > -delta)
pitchvel = 0;
}
compiled with
./cc1 -march=i586 -O2 -ffast-math
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40934
