This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
PATCH COMMITTED: Update Makefile dependency
- From: Ian Lance Taylor <iant at google dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Wed, 13 May 2009 10:42:59 -0700
- Subject: PATCH COMMITTED: Update Makefile dependency
In this patch:
2008-06-21 Ian Lance Taylor <iant@google.com>
...
* gencheck.c (tree_codes): Include all-tree.def, rather than
tree.def, c-common.def, and gencheck.h. Undefined DEFTREECODE
after it is used.
...
I changed gencheck.c to include all-tree.def, but I forgot to update the
Makefile dependency. I committed the appended patch as obvious. Tested
with bootstrap on i686-pc-linux-gnu.
Ian
2009-05-13 Ian Lance Taylor <iant@google.com>
* Makefile.in (build/gencheck.o): Depend upon all-tree.def, not
tree.def.
Index: Makefile.in
===================================================================
--- Makefile.in (revision 147490)
+++ Makefile.in (working copy)
@@ -3421,7 +3421,7 @@ build/genattrtab.o : genattrtab.c $(RTL_
build/genautomata.o : genautomata.c $(RTL_BASE_H) $(OBSTACK_H) \
$(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h vec.h \
$(HASHTAB_H) gensupport.h
-build/gencheck.o : gencheck.c tree.def $(BCONFIG_H) $(GTM_H) \
+build/gencheck.o : gencheck.c all-tree.def $(BCONFIG_H) $(GTM_H) \
$(SYSTEM_H) coretypes.h $(lang_tree_files) gimple.def
build/genchecksum.o : genchecksum.c $(BCONFIG_H) $(SYSTEM_H) $(MD5_H)
build/gencodes.o : gencodes.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \