Index: gcc/ChangeLog =================================================================== --- gcc/ChangeLog (revision 180375) +++ gcc/ChangeLog (working copy) @@ -1,3 +1,8 @@ +2011-10-24 Bernd Schmidt + + PR bootstrap/50836 + * rtlanal.c: Swap includes of "hard-reg-set.h" and "rtl.h". + 2011-10-24 Georg-Johann Lay * 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"