2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20000728-1.c
blobf56d940834eb200e6eaa60b87ef410a19bb1d580
1 struct clock {
2 long sec; long usec;
3 };
5 int foo(void)
7 struct clock clock_old = {0, 0};
9 for (;;) {
10 long foo;
12 if (foo == clock_old.sec && 0 == clock_old.usec);
14 return 0;