I find it's curious that the tail recursive implementation of fib is smaller than the non tail-recursive. Is that normal?
I find it's curious that the tail recursive implementation of fib is smaller than the non tail-recursive. Is that normal? 2 comments
|
@neauoire I'd expect it - especially with no register spill. Maybe "inline yourself" is a good metaphor?