Message-ID: <8D53104ECD0CD211AF4000A0C9D60AE3E3561C@probe-2.acclaim-euro.net> From: Shawn Hargreaves To: djgpp AT delorie DOT com Subject: Re: Fixed or forbidden register spilled error Date: Tue, 30 Mar 1999 12:13:14 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1460.8) Content-Type: text/plain Reply-To: djgpp AT delorie DOT com Andrew Davidson writes: > Incidentally, as it's compiled with omit-frame-pointer can I use > %ebp within my code without risking crashing anything? Yes. But if you use %ebp, that will probably return you to the problem of the optimiser not linking the inline asm fragment :-) Also be aware that disabling the frame pointer makes it harder to debug your program, and prevents things like symify from working properly. Shawn Hargreaves.