From: Steve Ellcey Date: Fri, 22 Jan 2010 22:22:51 +0000 (+0000) Subject: Makefile.in (tree-sra.o): Add $(EXPR_H) dependency. X-Git-Tag: releases/gcc-4.5.0~1092 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=65c0a517d9f0a26ead665a1abc1801f0e4ac75b2;p=thirdparty%2Fgcc.git Makefile.in (tree-sra.o): Add $(EXPR_H) dependency. 2010-01-22 Steve Ellcey * Makefile.in (tree-sra.o): Add $(EXPR_H) dependency. * tree-sra.c: Add include of expr.h. From-SVN: r156181 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 746e7705bbdd..3c761a2126b0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-01-22 Steve Ellcey + + * Makefile.in (tree-sra.o): Add $(EXPR_H) dependency. + * tree-sra.c: Add include of expr.h. + 2010-01-22 Jakub Jelinek * tree-into-ssa.c (maybe_register_def): If stmt ends the bb, diff --git a/gcc/Makefile.in b/gcc/Makefile.in index c388586ed65b..619d2519f2ba 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2989,7 +2989,7 @@ tree-ssa-ccp.o : tree-ssa-ccp.c $(TREE_FLOW_H) $(CONFIG_H) \ tree-sra.o : tree-sra.c $(CONFIG_H) $(SYSTEM_H) coretypes.h alloc-pool.h \ $(TM_H) $(TREE_H) $(GIMPLE_H) $(CGRAPH_H) $(TREE_FLOW_H) $(IPA_PROP_H) \ $(DIAGNOSTIC_H) statistics.h $(TREE_DUMP_H) $(TIMEVAR_H) $(PARAMS_H) \ - $(TARGET_H) $(FLAGS_H) + $(TARGET_H) $(FLAGS_H) $(EXPR_H) tree-switch-conversion.o : tree-switch-conversion.c $(CONFIG_H) $(SYSTEM_H) \ $(TREE_H) $(TM_P_H) $(TREE_FLOW_H) $(DIAGNOSTIC_H) $(TREE_INLINE_H) \ $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) $(GIMPLE_H) \ diff --git a/gcc/tree-sra.c b/gcc/tree-sra.c index 79c5c76c5e1e..7c3373de9f64 100644 --- a/gcc/tree-sra.c +++ b/gcc/tree-sra.c @@ -77,6 +77,7 @@ along with GCC; see the file COPYING3. If not see #include "alloc-pool.h" #include "tm.h" #include "tree.h" +#include "expr.h" #include "gimple.h" #include "cgraph.h" #include "tree-flow.h"