From: mrs Date: Sat, 29 May 2010 20:26:12 +0000 (+0000) Subject: 2010-05-29 H.J. Lu X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=387a6c3522a4572f6a6cd68d2c5677ff3fa9a3a7;p=thirdparty%2Fgcc.git 2010-05-29 H.J. Lu PR bootstrap/44315 * Makefile.in (build/gencondmd.o): Remove TM_H := $(GTM_H). Filter out insn-flags.h. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160035 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2a4373732332..3cb2351f4735 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-05-29 H.J. Lu + + PR bootstrap/44315 + * Makefile.in (build/gencondmd.o): Remove TM_H := $(GTM_H). + Filter out insn-flags.h. + 2010-05-29 Jan Hubicka * cgraph.h (struct varpool_node_set_def, diff --git a/gcc/Makefile.in b/gcc/Makefile.in index cb432cb71854..646269e340fc 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3748,12 +3748,11 @@ build/rtl.o: rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) \ $(RTL_H) $(GGC_H) errors.h build/vec.o : vec.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(VEC_H) \ $(GGC_H) $(TOPLEV_H) -build/gencondmd.o : \ - TM_H := $(GTM_H) build/gencondmd.o : build/gencondmd.c $(BCONFIG_H) $(SYSTEM_H) \ - coretypes.h $(GTM_H) insn-constants.h $(RTL_H) $(TM_P_H) \ - $(FUNCTION_H) $(REGS_H) $(RECOG_H) output.h $(FLAGS_H) \ - $(RESOURCE_H) $(TOPLEV_H) reload.h $(EXCEPT_H) tm-constrs.h + coretypes.h $(GTM_H) insn-constants.h \ + $(filter-out insn-flags.h, $(RTL_H) $(TM_P_H) $(FUNCTION_H) $(REGS_H) \ + $(RECOG_H) output.h $(FLAGS_H) $(RESOURCE_H) $(TOPLEV_H) reload.h \ + $(EXCEPT_H) tm-constrs.h) # This pulls in tm-pred.h which contains inline functions wrapping up # predicates from the back-end so those functions must be discarded. # No big deal since gencondmd.c is a dummy file for non-GCC compilers.