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]

[PATCH] Fix parallel bootstrap


cgraph.h dependency was incomplete, so tree-check.h did not get
built proberly.

Committed as obvious.

Richard.


2005-10-12  Richard Guenther  <rguenther@suse.de>

	* Makefile.in (CGRAPH_H): Depend on $(TREE_H).

Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.1546
diff -c -3 -p -r1.1546 Makefile.in
*** Makefile.in	11 Oct 2005 22:24:36 -0000	1.1546
--- Makefile.in	12 Oct 2005 12:35:26 -0000
*************** CFGLOOP_H = cfgloop.h $(BASIC_BLOCK_H) $
*** 752,758 ****
  IPA_UTILS_H = ipa-utils.h $(TREE_H) $(CGRAPH_H) 
  IPA_REFERENCE_H = ipa-reference.h bitmap.h $(TREE_H)  
  IPA_TYPE_ESCAPE_H = ipa-type-escape.h $(TREE_H)  
! CGRAPH_H = cgraph.h tree.h 
  DF_H = df.h bitmap.h sbitmap.h $(BASIC_BLOCK_H)
  DDG_H = ddg.h sbitmap.h $(DF_H)
  GCC_H = gcc.h version.h
--- 752,758 ----
  IPA_UTILS_H = ipa-utils.h $(TREE_H) $(CGRAPH_H) 
  IPA_REFERENCE_H = ipa-reference.h bitmap.h $(TREE_H)  
  IPA_TYPE_ESCAPE_H = ipa-type-escape.h $(TREE_H)  
! CGRAPH_H = cgraph.h $(TREE_H)
  DF_H = df.h bitmap.h sbitmap.h $(BASIC_BLOCK_H)
  DDG_H = ddg.h sbitmap.h $(DF_H)
  GCC_H = gcc.h version.h


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