diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2010-07-01 13:47:36 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2010-07-01 13:47:36 +0000 |
commit | 5a5bd694f7fd5174a9cbbe6e2b034858e225f615 (patch) | |
tree | a42af497e453da9e7b9632cfa697ae237cba18a3 /gcc | |
parent | 45ea4dfe22c713628a6c054d99df67db0f6ec5dc (diff) | |
download | gcc-5a5bd694f7fd5174a9cbbe6e2b034858e225f615.zip gcc-5a5bd694f7fd5174a9cbbe6e2b034858e225f615.tar.gz gcc-5a5bd694f7fd5174a9cbbe6e2b034858e225f615.tar.bz2 |
reload.c: Include toplev.h.
* reload.c: Include toplev.h.
* recog.c: Likewise.
* Makefile.in: Adjust dependencies.
From-SVN: r161671
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 4 | ||||
-rw-r--r-- | gcc/recog.c | 1 | ||||
-rw-r--r-- | gcc/reload.c | 1 |
4 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f7142fc..4052269 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-07-01 López-Ibáñez <manu@gcc.gnu.org> + + * reload.c: Include toplev.h. + * recog.c: Likewise. + * Makefile.in: Adjust dependencies. + 2010-07-01 Jakub Jelinek <jakub@redhat.com> PR debug/44694 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index d717332..ed53a79 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3269,7 +3269,7 @@ vec.o : vec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(VEC_H) $(GGC_H) \ reload.o : reload.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_ERROR_H) \ $(FLAGS_H) output.h $(EXPR_H) $(OPTABS_H) reload.h $(RECOG_H) \ hard-reg-set.h insn-config.h $(REGS_H) $(FUNCTION_H) real.h \ - addresses.h $(TM_P_H) $(PARAMS_H) $(TARGET_H) $(DF_H) ira.h + addresses.h $(TM_P_H) $(PARAMS_H) $(TARGET_H) $(DF_H) ira.h $(TOPLEV_H) reload1.o : reload1.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_ERROR_H) \ $(EXPR_H) $(OPTABS_H) reload.h $(REGS_H) hard-reg-set.h insn-config.h \ $(BASIC_BLOCK_H) $(RECOG_H) output.h $(FUNCTION_H) $(TM_P_H) \ @@ -3409,7 +3409,7 @@ recog.o : recog.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_ERROR_H) \ $(FUNCTION_H) $(BASIC_BLOCK_H) $(REGS_H) $(RECOG_H) $(EXPR_H) \ $(FLAGS_H) insn-config.h $(INSN_ATTR_H) output.h reload.h \ addresses.h $(TM_P_H) $(TIMEVAR_H) $(TREE_PASS_H) hard-reg-set.h \ - $(DF_H) $(DBGCNT_H) $(TARGET_H) + $(DF_H) $(DBGCNT_H) $(TARGET_H) $(TOPLEV_H) reg-stack.o : reg-stack.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ $(RTL_ERROR_H) $(TREE_H) $(RECOG_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) \ insn-config.h reload.h $(FUNCTION_H) $(TM_P_H) $(GGC_H) \ diff --git a/gcc/recog.c b/gcc/recog.c index 803aff5..6848506 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -42,6 +42,7 @@ along with GCC; see the file COPYING3. If not see #include "timevar.h" #include "tree-pass.h" #include "df.h" +#include "toplev.h" /* exact_log2 may be used by targets */ #ifndef STACK_PUSH_CODE #ifdef STACK_GROWS_DOWNWARD diff --git a/gcc/reload.c b/gcc/reload.c index ea552e6..ea90761 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -111,6 +111,7 @@ a register with any other reload. */ #include "params.h" #include "target.h" #include "ira.h" +#include "toplev.h" /* exact_log2 may be used by targets */ /* True if X is a constant that can be forced into the constant pool. */ #define CONST_POOL_OK_P(X) \ |