Erick Gallesio <eg_at_unice.fr>:
> Of course. I'm just astonished that we have not seen this before. The
> setmp/longjmp trick to save registers had worked for quite a long time
> now, and it is weird that it does not work anymore. I have tried to
In ANSI C, setjmp/longjmp is not required to restore any
local variables, and thus is not required to save any
registers.
'gcc -traditional' will force local variables to be
allocated on the stack by default, thus giving you pre-ANSI
setjmp/longjmp behavior.
--
Received on Mon Apr 17 2000 - 01:48:04 CEST