Commit fbb789d4 by Richard Guenther Committed by Richard Biener

tree-ssa-copy.c (copy_prop_visit_phi_node): Do not leave the PHIs value undefined.

2009-03-28  Richard Guenther  <rguenther@suse.de>

	* tree-ssa-copy.c (copy_prop_visit_phi_node): Do not leave
	the PHIs value undefined.

From-SVN: r145193
parent bc6600ab
2009-03-28 Richard Guenther <rguenther@suse.de>
* tree-ssa-copy.c (copy_prop_visit_phi_node): Do not leave
the PHIs value undefined.
2009-03-28 Jan Hubicka <jh@suse.cz>
* tree-pass.h (pass_fixup_cfg): New pass.
......
......@@ -892,7 +892,7 @@ copy_prop_visit_phi_node (gimple phi)
memory reference of all the other arguments. */
if (phi_val.value == NULL_TREE)
{
phi_val.value = arg_val->value;
phi_val.value = arg_val->value ? arg_val->value : arg;
continue;
}
......
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