Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Chapel 支持递归函数调用,但是否支持尾调用优化,使尾递归不使用额外的堆栈帧?
我有理由确定 Chapel 编译器本身并没有实现尾递归优化。根据函数的复杂性,后端编译器(C 编译器或 LLVM)可能会对生成的代码执行此类优化。
[编辑:此特征适用于 Chapel 编译器的 1.14 及更早版本]