aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorRichard Biener <rguenth@gcc.gnu.org>2009-08-06 11:29:13 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2009-08-06 11:29:13 +0000
commit8bc88f256740083bb9ef77a4a3bd1a440928c5ea (patch)
tree085a13acd988eaaa68c80427926f4636e45f17a5 /gcc/tree.c
parent6e319d7beb01b774b7b535e021f48c9a94567e3c (diff)
downloadgcc-8bc88f256740083bb9ef77a4a3bd1a440928c5ea.zip
gcc-8bc88f256740083bb9ef77a4a3bd1a440928c5ea.tar.gz
gcc-8bc88f256740083bb9ef77a4a3bd1a440928c5ea.tar.bz2
re PR middle-end/40964 (ICE in insert_vi_for_tree)
2009-08-06 Richard Guenther <rguenther@suse.de> PR tree-optimization/40964 * tree.c (iterative_hash_host_wide_int): Export. * tree.h (iterative_hash_host_wide_int): Declare. * tree-ssa-structalias.c (heapvar_map): New struct. (heapvar_map_eq): New function. (heapvar_map_hash): Likewise. (heapvar_lookup): Adjust. (heapvar_insert): Likewise. (make_constraint_from_heapvar): Allow multiple heap variables per decl at different offsets. (init_alias_heapvars): Adjust. * gcc.c-torture/compile/pr40964.c: New testcase. From-SVN: r150517
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index 58994b1..60416d3 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -3988,7 +3988,7 @@ iterative_hash_hashval_t (hashval_t val, hashval_t val2)
}
/* Produce good hash value combining VAL and VAL2. */
-static inline hashval_t
+hashval_t
iterative_hash_host_wide_int (HOST_WIDE_INT val, hashval_t val2)
{
if (sizeof (HOST_WIDE_INT) == sizeof (hashval_t))