5
votes
Which, if any, C++ compilers do tail-recursion optimization?
gcc 4.3.2 completely inlines this function (crappy/trivial atoi() implementation) into main(). Optimization level is -O1. I notice if I play around with it …
