1/* { dg-do compile } */
2/* { dg-require-effective-target ilp32 } */
3/* { dg-options "-O2 -march=i586 -ffast-math" } */
4
5extern double host_frametime;
6extern float pitchvel;
7V_DriftPitch (float delta, float move)
8{
9  if (!delta)
10    move = host_frametime;
11  if (delta > 0)
12    ;
13  else if (delta < 0 && move > -delta)
14    pitchvel = 0;
15}
16