On Sat, Oct 13, 2012 at 12:09 AM, ⚛ <0xe2.0x...@gmail.com> wrote:basically it means the function is not split-stack function, that is, the linker shouldn'tHello. In the C source code there are instance of:#pragma textflag 7void function() {...}I would like to know how is this implemented, and what is the stack capacity in the body of the function.add stack split instruction prolog to it, and it can only use very limited stack space.
The compiler is verifying the 120 bytes constraint by computing the stack size of the function and by making sure there are no recursive function calls and no function calls through a pointer?