diff options
author | Jeff Law <law@redhat.com> | 2015-03-03 04:54:49 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2015-03-03 04:54:49 -0700 |
commit | 2f159d9f86705209595b1b8de719231c2f5fae33 (patch) | |
tree | 5171a8e85f5a8f6e5aa6b698ed2026c29c5e2b5e /gcc/tree-ssa-dom.c | |
parent | 5cb8b86edef7b3334f7a6ec620dfd4e80b9b1300 (diff) | |
download | gcc-2f159d9f86705209595b1b8de719231c2f5fae33.zip gcc-2f159d9f86705209595b1b8de719231c2f5fae33.tar.gz gcc-2f159d9f86705209595b1b8de719231c2f5fae33.tar.bz2 |
re PR tree-optimization/65241 (ICE (in remove_local_expressions_from_table, at tree-ssa-dom.c:1081))
PR tree-optimization/65241
* tree-ssa-dom.c (lookup_avail_expr): Only modify the avail_expr
hash table if INSERT is true.
PR tree-optimization/65241
* gcc.c-torture/compile/pr65241.c: New test.
From-SVN: r221145
Diffstat (limited to 'gcc/tree-ssa-dom.c')
-rw-r--r-- | gcc/tree-ssa-dom.c | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index 096e471..d230ce1 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -2649,19 +2649,22 @@ lookup_avail_expr (gimple stmt, bool insert) && walk_non_aliased_vuses (&ref, vuse2, vuse_eq, NULL, NULL, vuse1) != NULL)) { - struct expr_hash_elt *element2 = XNEW (struct expr_hash_elt); - *element2 = element; - element2->stamp = element2; - - /* Insert the expr into the hash by replacing the current - entry and recording the value to restore in the - aval_exprs_stack. */ - avail_exprs_stack.safe_push (std::make_pair (element2, *slot)); - *slot = element2; - if (dump_file && (dump_flags & TDF_DETAILS)) + if (insert) { - fprintf (dump_file, "2>>> "); - print_expr_hash_elt (dump_file, *slot); + struct expr_hash_elt *element2 = XNEW (struct expr_hash_elt); + *element2 = element; + element2->stamp = element2; + + /* Insert the expr into the hash by replacing the current + entry and recording the value to restore in the + avail_exprs_stack. */ + avail_exprs_stack.safe_push (std::make_pair (element2, *slot)); + *slot = element2; + if (dump_file && (dump_flags & TDF_DETAILS)) + { + fprintf (dump_file, "2>>> "); + print_expr_hash_elt (dump_file, *slot); + } } return NULL_TREE; } |