This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug inline-asm/11807] GCC should error out when clobbering the stack or frame pointer


------- Additional Comments From rth at gcc dot gnu dot org  2003-11-21 08:47 -------
(In reply to comment #8)
> +         switch (i) {
> +         case PIC_OFFSET_TABLE_REGNUM:

Can't use a switch; PIC_OFFSET_TABLE_REGNUM is not constant.

> +         case HARD_FRAME_POINTER_REGNUM:
> +           error ("Frame pointer register `%s' clobbered in `asm'", regname);

This one's more interesting, since if CAN_DEBUG_WITHOUT_FP we often won't
need or use a frame pointer.  I think this error should be delayed until
reload has decided that a frame pointer is necessary.

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11807


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]