diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7776,7 +7776,7 @@ add_expr (const_tree t, inchash::hash &hstate, unsigned int flags) enum tree_code code; enum tree_code_class tclass; - if (t == NULL_TREE) + if (t == NULL_TREE || t == error_mark_node) { hstate.merge_hash (0); return; |