More good news: A problem with `for' loops that I found in 2001 with gcc-2.95.x is apparently also fixed in gcc-3.3.3. So we can put this in statements.c to disable a work-around and perhaps produce slightly better code for `for' loops:
#ifdef EGCS97 #define FOR_BUG_OK #endif
Frank