aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2006-05-10 01:10:11 +0000
committerBen Elliston <bje@gcc.gnu.org>2006-05-10 11:10:11 +1000
commit9c5835d588797ee172ed900846bff6ebfc2a9ae5 (patch)
tree093d6452669d2bb1c4a2dc0d26c887175dc3dcfd /gcc
parent88d1293a3a58d99b5c709c4e4ab48618eb61454a (diff)
downloadgcc-9c5835d588797ee172ed900846bff6ebfc2a9ae5.zip
gcc-9c5835d588797ee172ed900846bff6ebfc2a9ae5.tar.gz
gcc-9c5835d588797ee172ed900846bff6ebfc2a9ae5.tar.bz2
tree.h: Include "hashtab.h".
* tree.h: Include "hashtab.h". (iterative_hash_expr): Use hashval_t in its prototype. * Makefile.in (TREE_H): Add $(HASHTAB_H). From-SVN: r113668
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/Makefile.in2
-rw-r--r--gcc/tree.h3
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f74f2d3..6edc326 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 807380a..93a5016 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -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
diff --git a/gcc/tree.h b/gcc/tree.h
index 742002a..fcd6686 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -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);