aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
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 79bbd07..e77d4b8 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -1364,7 +1364,7 @@ int_cst_hasher::hash (tree x)
int i;
for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)
- code ^= TREE_INT_CST_ELT (t, i);
+ code = iterative_hash_host_wide_int (TREE_INT_CST_ELT(t, i), code);
return code;
}