I'll admit it is inconsitent, but I should have said "sizeof(b) should always be expanded to a constant b2 in the for expression". That is becouse for some reason I expect the optimizer to give me a set number of loops. I'll admit that it might not be as my mind makes it. ;-)
/ Peter Bortas
Previous text:
2003-03-20 10:39: Subject: for-loop optimization
Really?
array fifo=({}); while (sizeof(fifo)<20) { fifo+=({getstuff()}); }
That loop would never exit.
/ Mirar