diff options
| author | Ben Elliston <bje@au.ibm.com> | 2006-05-10 01:10:11 +0000 |
|---|---|---|
| committer | Ben Elliston <bje@gcc.gnu.org> | 2006-05-10 11:10:11 +1000 |
| commit | 9c5835d588797ee172ed900846bff6ebfc2a9ae5 (patch) | |
| tree | 093d6452669d2bb1c4a2dc0d26c887175dc3dcfd /gcc/tree.h | |
| parent | 88d1293a3a58d99b5c709c4e4ab48618eb61454a (diff) | |
| download | gcc-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/tree.h')
| -rw-r--r-- | gcc/tree.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |
