Comment on Strategies for Fast LexersparentComments−teo_zero1yOn compilers that don't support musttail, won't this make the stack explode?−gsliepen1yAFAIK compilers will perform tail call optimization without [[musttail]], it's just not guaranteed (and probably it won't if you don't enable optimizations at all).
Comments
On compilers that don't support musttail, won't this make the stack explode?
AFAIK compilers will perform tail call optimization without [[musttail]], it's just not guaranteed (and probably it won't if you don't enable optimizations at all).