On 4 Jan 2020, at 5:49pm, Doug <[email protected]> wrote: > for (i=1000; i--; i>0);
If you have optimization turned on, your compiler might turn that into "i = 0". Optimization messes with a lot of benchmarks. Checking which optimization setting was used is one aspect of what Howard Chu was talking about: benchmark figures in isolation don't mean much. I'm not a big fan of general statements about which form is faster, uses less memory, whatever, than which other form. I want to say "try both ways and keep the one which is best". _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

