2014-12-01 Richard Biener <rguenther@suse.de>
PR middle-end/64111
* tree.c (int_cst_hasher::hash): Use TYPE_UID instead of
htab_hash_pointer to not break PCH.
From-SVN: r218212
+2014-12-01 Richard Biener <rguenther@suse.de>
+
+ PR middle-end/64111
+ * tree.c (int_cst_hasher::hash): Use TYPE_UID instead of
+ htab_hash_pointer to not break PCH.
+
2014-12-01 Richard Biener <rguenther@suse.de>
PR tree-optimization/15346
int_cst_hasher::hash (tree x)
{
const_tree const t = x;
- hashval_t code = htab_hash_pointer (TREE_TYPE (t));
+ hashval_t code = TYPE_UID (TREE_TYPE (t));
int i;
for (i = 0; i < TREE_INT_CST_NUNITS (t); i++)