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: Make tree-ssa-structalias.o depend on $(EXPR_H)


tree-ssa-structalias.c includes expr.h. But  $(EXPR_H) is missing.
This patch adds $(EXPR_H).


H.J.
----
2005-07-04  H.J. Lu  <hongjiu.lu@intel.com>

	* Makefile.in (tree-ssa-structalias.o): Depend on $(EXPR_H).

--- gcc/Makefile.in.depend	2005-07-01 11:22:34.000000000 -0700
+++ gcc/Makefile.in	2005-07-04 17:02:02.349856502 -0700
@@ -1700,7 +1700,7 @@ stor-layout.o : stor-layout.c $(CONFIG_H
    toplev.h
 tree-ssa-structalias.o: tree-ssa-structalias.c tree-ssa-structalias.h \
    $(SYSTEM_H) $(CONFIG_H) $(GGC_H) $(TREE_H) $(TREE_FLOW_H) \
-   $(TM_H) coretypes.h cgraph.h tree-pass.h $(TIMEVAR_H)
+   $(TM_H) $(EXPR_H) coretypes.h cgraph.h tree-pass.h $(TIMEVAR_H)
 tree-ssa.o : tree-ssa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
    $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) output.h $(DIAGNOSTIC_H) \
    toplev.h function.h $(TIMEVAR_H) $(TM_H) coretypes.h \


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