On 10/21/11 20:38, Bernd Schmidt wrote: > On 10/21/11 15:42, Bernd Schmidt wrote: >> On 10/14/11 17:35, Vladimir Makarov wrote: >>> The scheduler part of the patch is ok for me (other part changes are >>> obvious). Could you only commit it at the beginning of the next week. >> >> I've committed this variant. It's updated for some recent changes in trunk:
And here's another fix, which is for a bootstrap failure due to a missing prototype. Not sure why it doesn't show up on my machine (I tried again...) Bernd
Index: gcc/ChangeLog =================================================================== --- gcc/ChangeLog (revision 180375) +++ gcc/ChangeLog (working copy) @@ -1,3 +1,8 @@ +2011-10-24 Bernd Schmidt <ber...@codesourcery.com> + + PR bootstrap/50836 + * rtlanal.c: Swap includes of "hard-reg-set.h" and "rtl.h". + 2011-10-24 Georg-Johann Lay <a...@gjlay.de> * config/avr/avr.c: Break long lines. Index: gcc/rtlanal.c =================================================================== --- gcc/rtlanal.c (revision 180375) +++ gcc/rtlanal.c (working copy) @@ -25,8 +25,8 @@ along with GCC; see the file COPYING3. #include "coretypes.h" #include "tm.h" #include "diagnostic-core.h" -#include "rtl.h" #include "hard-reg-set.h" +#include "rtl.h" #include "insn-config.h" #include "recog.h" #include "target.h"