This is the mail archive of the gcc-patches@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]

[new-regalloc-branch] Make it compile


Hi,

pre-reload.h uses HARD_REG_SET, so must be included after hard-reg-set.h,
which this patch does for reload.c.


Ciao,
Michael.
-- 
	* reload.c: Include <pre-reload.h> after <hard-reg-set.h>.

Index: reload.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/reload.c,v
retrieving revision 1.142.2.4
diff -u -p -r1.142.2.4 reload.c
--- reload.c	2002/02/04 21:26:22	1.142.2.4
+++ reload.c	2002/03/21 15:37:25
@@ -93,9 +93,9 @@ a register with any other reload.  */
 #include "insn-config.h"
 #include "recog.h"
 #include "reload.h"
-#include "pre-reload.h"
 #include "regs.h"
 #include "hard-reg-set.h"
+#include "pre-reload.h"
 #include "flags.h"
 #include "real.h"
 #include "output.h"


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