Makefile.in (tree-sra.o): Add $(EXPR_H) dependency.
authorSteve Ellcey <sje@cup.hp.com>
Fri, 22 Jan 2010 22:22:51 +0000 (22:22 +0000)
committerSteve Ellcey <sje@gcc.gnu.org>
Fri, 22 Jan 2010 22:22:51 +0000 (22:22 +0000)
2010-01-22  Steve Ellcey  <sje@cup.hp.com>

* Makefile.in (tree-sra.o): Add $(EXPR_H) dependency.
* tree-sra.c: Add include of expr.h.

From-SVN: r156181

gcc/ChangeLog
gcc/Makefile.in
gcc/tree-sra.c

index 746e770..3c761a2 100644 (file)
@@ -1,3 +1,8 @@
+2010-01-22  Steve Ellcey  <sje@cup.hp.com>
+
+       * Makefile.in (tree-sra.o): Add $(EXPR_H) dependency.
+       * tree-sra.c: Add include of expr.h.
+
 2010-01-22  Jakub Jelinek  <jakub@redhat.com>
 
        * tree-into-ssa.c (maybe_register_def): If stmt ends the bb,
index c388586..619d251 100644 (file)
@@ -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) \
index 79c5c76..7c3373d 100644 (file)
@@ -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"