What does “sibling calls” mean?

后端 未结 3 1612
独厮守ぢ
独厮守ぢ 2021-02-05 04:49

On GCC manual,

-foptimize-sibling-calls

Optimize sibling and tail recursive calls.

I kn

3条回答
  •  耶瑟儿~
    2021-02-05 04:59

    the compiler considers two functions as being siblings if they share the same structural equivalence of return types, as well as matching space requirements of their arguments.

    http://www.drdobbs.com/tackling-c-tail-calls/184401756

提交回复
热议问题