Commit 773a7861 by Eric Botcazou Committed by Eric Botcazou

tree-ssa-alias.c (finalize_ref_all_pointers): Clear pt_anything flag on ref-all pointers.

	* tree-ssa-alias.c (finalize_ref_all_pointers): Clear pt_anything
	flag on ref-all pointers.

From-SVN: r125656
parent 4543943a
2007-06-12 Eric Botcazou <ebotcazou@adacore.com>
* tree-ssa-alias.c (finalize_ref_all_pointers): Clear pt_anything
flag on ref-all pointers.
2007-06-12 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR middle-end/31579
......
......@@ -2415,8 +2415,14 @@ finalize_ref_all_pointers (struct alias_info *ai)
for (i = 0; i < ai->num_pointers; i++)
{
tree ptr = ai->pointers[i]->var, tag;
/* Avoid adding to self and clean up. */
if (PTR_IS_REF_ALL (ptr))
continue;
{
struct ptr_info_def *pi = get_ptr_info (ptr);
if (pi->is_dereferenced)
pi->pt_anything = 0;
continue;
}
tag = symbol_mem_tag (ptr);
if (is_call_clobbered (tag))
add_may_alias (ai->ref_all_symbol_mem_tag, tag);
......
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