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 target/19378] [4.0 Regression] ICE during bootstrap compiling __fixdfdi


------- Additional Comments From marekm at amelek dot gda dot pl  2005-01-23 00:14 -------
I think the proposed avr_hard_regno_mode_ok patch may need a small fix for 
QImode in r29 - possible problem with frame pointer (see removed comment): 
 
-  if (regno <= REG_Y && (regno + GET_MODE_SIZE (mode)) >= (REG_Y + 1)) 
+  if (regno <= (REG_Y + 1) && regno + GET_MODE_SIZE (mode) > REG_Y) 
 

-- 


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


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