Commit bab9de71 by Richard Biener Committed by Richard Biener

re PR tree-optimization/90930 (Excessive memory consumption)

2019-06-24  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/90930
	PR tree-optimization/90316
	* tree-ssa-alias.c (walk_non_aliased_vuses): Add missing
	decrement of limit.

From-SVN: r272621
parent 2b92d5c6
2019-06-24 Richard Biener <rguenther@suse.de>
PR tree-optimization/90930
PR tree-optimization/90316
* tree-ssa-alias.c (walk_non_aliased_vuses): Add missing
decrement of limit.
2019-06-24 Martin Sebor <msebor@redhat.com> 2019-06-24 Martin Sebor <msebor@redhat.com>
* tree-pretty-print.h: Remove unnecessary punctuation characters * tree-pretty-print.h: Remove unnecessary punctuation characters
......
...@@ -3135,6 +3135,7 @@ walk_non_aliased_vuses (ao_ref *ref, tree vuse, ...@@ -3135,6 +3135,7 @@ walk_non_aliased_vuses (ao_ref *ref, tree vuse,
res = NULL; res = NULL;
break; break;
} }
--limit;
if (stmt_may_clobber_ref_p_1 (def_stmt, ref)) if (stmt_may_clobber_ref_p_1 (def_stmt, ref))
{ {
if (!translate) if (!translate)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment