Thread: Lol
View Single Post
Old 04-08-2005, 01:27 AM   #8 (permalink)
killemov
Registered User
 
Join Date: Apr 2005
Posts: 1
killemov is on a distinguished road
I just stumbled onto this thread ... (bit late)
Code:
	for(i;i<4000000000;i++)
	{i++;}
the problem is of course in incrementing i inside the loop. If you do not touch the loop iterator, using the prefix incrementor will be optimized better.
killemov is offline   Reply With Quote