Displaying 1 result from an estimated 1 matches for "eliminaterecursivetailcall".
2014 May 08
3
[LLVMdev] Small problem with the tail call elimination pass
Hello everybody,
On the documentation page for the tailcallelim pass you can read:
"This pass transforms functions that are prevented from being tail recursive by an
associative expression to use an accumulator variable, thus compiling the typical
naive factorial or fib implementation into efficient code”
However, I don’t see this behavior when trying to compile this variant of
the