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 rtl-optimization/18420] [4.0 Regression] ICE compiling mesa at -O2


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-11 01:49 -------
The problem is that the register is r30 (which is the FRAME_POINTER_REGNUM) and reload is not 
complete at this point, maybe this is not the correct check.

((reload_completed && !frame_pointer_needed)
	  || (REGNO (op) != FRAME_POINTER_REGNUM
#if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
	      && REGNO (op) != HARD_FRAME_POINTER_REGNUM
#endif
	     ))

-- 


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


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