Commit 80ba9432 by Daniel Berlin Committed by Daniel Berlin

tree-ssa-structalias.c (intra_create_variable_infos): Don't recreate…

tree-ssa-structalias.c (intra_create_variable_infos): Don't recreate nonlocal_all if it already exists.

2006-10-25  Daniel Berlin  <dberlin@dberlin.org>

	* tree-ssa-structalias.c (intra_create_variable_infos):
	  Don't recreate nonlocal_all if it already exists.

From-SVN: r118031
parent bb7f0423
2006-10-25 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa-structalias.c (intra_create_variable_infos):
Don't recreate nonlocal_all if it already exists.
2006-10-25 Richard Guenther <rguenther@suse.de>
PR target/28803
......
......@@ -4308,7 +4308,8 @@ intra_create_variable_infos (void)
make_constraint_from_escaped (p);
}
}
nonlocal_all = create_nonlocal_var (void_type_node);
if (!nonlocal_all)
nonlocal_all = create_nonlocal_var (void_type_node);
/* Create variable info for the nonlocal var if it does not
exist. */
......
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