From 9f02e6a5b5c53618d4081e5e5a9796267552905d Mon Sep 17 00:00:00 2001 From: Bernd Schmidt Date: Mon, 24 Oct 2011 11:03:12 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/rtlanal.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8b4286105e4..98dbe8147e4 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 b98fa92cdae..54d9eb1ef67 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"