In my opinion sizeof(b) should always be expanded to a constant b2 before doing anything else.
/ Peter Bortas
Previous text:
2003-03-20 10:32: Subject: for-loop optimization
That seems like a bug to me. for (a;b;c) d; should always expand to something like
| a; | while (b) | { | d; | c; | }
in my opinion.
/ Mirar