tcc-65816/test/tests/loop-8.c
2017-06-09 13:52:12 +02:00

24 lines
268 B
C

double a[3] = { 0.0, 1.0, 2.0 };
void bar (int x, double *y)
{
if (x || *y != 1.0)
abort ();
}
int main ()
{
double c;
int d;
for (d = 0; d < 3; d++)
{
c = a[d];
if (c > 0.0) goto e;
}
bar(1, &c);
exit (1);
e:
bar(0, &c);
exit (0);
}