tree.h: Include "hashtab.h".
authorBen Elliston <bje@au.ibm.com>
Wed, 10 May 2006 01:10:11 +0000 (01:10 +0000)
committerBen Elliston <bje@gcc.gnu.org>
Wed, 10 May 2006 01:10:11 +0000 (11:10 +1000)
        * tree.h: Include "hashtab.h".
        (iterative_hash_expr): Use hashval_t in its prototype.
        * Makefile.in (TREE_H): Add $(HASHTAB_H).

From-SVN: r113668

gcc/ChangeLog
gcc/Makefile.in
gcc/tree.h

index f74f2d3980b98c35200cf9e06f2100e424b5caaf..6edc32675fa80bac26153d25350346a9dd053d7b 100644 (file)
@@ -1,3 +1,9 @@
+2006-05-10  Ben Elliston  <bje@au.ibm.com>
+
+       * tree.h: Include "hashtab.h".
+       (iterative_hash_expr): Use hashval_t in its prototype.
+       * Makefile.in (TREE_H): Add $(HASHTAB_H).
+
 2006-05-09  Steve Ellcey  <sje@cup.hp.com>
 
        PR bootstrap/26872
index 807380a71431f63dd468ffe4809174eb0da55de4..93a5016995ca2d7c7a5d05d714629d0812113a9f 100644 (file)
@@ -747,7 +747,7 @@ RTL_H = $(RTL_BASE_H) genrtl.h
 PARAMS_H = params.h params.def
 BUILTINS_DEF = builtins.def sync-builtins.def omp-builtins.def
 TREE_H = tree.h tree.def $(MACHMODE_H) tree-check.h $(BUILTINS_DEF) \
-          input.h statistics.h vec.h treestruct.def
+          input.h statistics.h vec.h treestruct.def $(HASHTAB_H)
 BASIC_BLOCK_H = basic-block.h bitmap.h sbitmap.h varray.h $(PARTITION_H) \
           hard-reg-set.h cfghooks.h $(OBSTACK_H)
 GCOV_IO_H = gcov-io.h gcov-iov.h auto-host.h
index 742002a693fccd2e53a884f65536477b44d9b83e..fcd668659b9978bb340b9bfbba06fb2ba9c0e193 100644 (file)
@@ -22,6 +22,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
 #ifndef GCC_TREE_H
 #define GCC_TREE_H
 
+#include "hashtab.h"
 #include "machmode.h"
 #include "input.h"
 #include "statistics.h"
@@ -4266,7 +4267,7 @@ extern bool variably_modified_type_p (tree, tree);
 extern int tree_log2 (tree);
 extern int tree_floor_log2 (tree);
 extern int simple_cst_equal (tree, tree);
-extern unsigned int iterative_hash_expr (tree, unsigned int);
+extern hashval_t iterative_hash_expr (tree, hashval_t);
 extern int compare_tree_int (tree, unsigned HOST_WIDE_INT);
 extern int type_list_equal (tree, tree);
 extern int chain_member (tree, tree);