Hi,
When tracking down a different (but related) bug, I noticed that,
at -O0, code to copy function parameters from registers to the stack is
generated at the start of the function. This is done even for naked
functions (__attribute__((naked))), which I guess is wrong, as
those functions don't h
Senthil Kumar Selvaraj schrieb:
Hi,
When tracking down a different (but related) bug, I noticed that,
at -O0, code to copy function parameters from registers to the stack is
generated at the start of the function. This is done even for naked
functions (__attribute__((naked))), which I guess is