Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20010723-1.c
blob9d4b29f68980695877570838ec9cb3d8dd269453
1 int
2 test ()
4 int biv,giv;
5 for (biv = 0, giv = 0; giv != 8; biv++)
6 giv = biv*8;
7 return giv;
11 main()
13 if (test () != 8)
14 abort ();
15 exit (0);