Commit d804d490 by Diego Novillo Committed by Diego Novillo

* tree-ssa-alias.c (dump_alias_info): Ignore NULL SSA_NAMEs.

From-SVN: r87702
parent 8b547e44
2004-09-18 Diego Novillo <dnovillo@redhat.com>
* tree-ssa-alias.c (dump_alias_info): Ignore NULL SSA_NAMEs.
2004-09-18 Jan Hubicka <jh@suse.cz>
* tree-into-ssa.c (rewrite_ssa_into_ssa): Expect ssa_name to return
......
......@@ -2223,7 +2223,12 @@ dump_alias_info (FILE *file)
for (i = 1; i < num_ssa_names; i++)
{
tree ptr = ssa_name (i);
struct ptr_info_def *pi = SSA_NAME_PTR_INFO (ptr);
struct ptr_info_def *pi;
if (ptr == NULL_TREE)
continue;
pi = SSA_NAME_PTR_INFO (ptr);
if (!SSA_NAME_IN_FREE_LIST (ptr)
&& pi
&& pi->name_mem_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