From: Bernd Schmidt Date: Mon, 24 Oct 2011 11:03:12 +0000 (+0000) Subject: re PR bootstrap/50836 (bootstrap fails due to error: no previous prototype for 'find_... X-Git-Tag: releases/gcc-4.7.0~2861 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9f02e6a5b5c53618d4081e5e5a9796267552905d;p=thirdparty%2Fgcc.git re PR bootstrap/50836 (bootstrap fails due to error: no previous prototype for 'find_all_hard_reg_sets') PR bootstrap/50836 * rtlanal.c: Swap includes of "hard-reg-set.h" and "rtl.h". From-SVN: r180376 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8b4286105e49..98dbe8147e4a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index b98fa92cdae9..54d9eb1ef67f 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -25,8 +25,8 @@ along with GCC; see the file COPYING3. If not see #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"