Commit 5dd8841a by Kazu Hirata Committed by Kazu Hirata

tree-cfg.c (phi_alternatives_equal): Check that PHI_ARG_DEF is not null.

	* tree-cfg.c (phi_alternatives_equal): Check that PHI_ARG_DEF
	is not null.

From-SVN: r91646
parent ea7b59ba
2004-12-02 Kazu Hirata <kazu@cs.umass.edu>
* tree-cfg.c (phi_alternatives_equal): Check that PHI_ARG_DEF
is not null.
2004-12-02 Jeff Law <law@redhat.com>
* tree-eh.c: Revert yesterday's change.
......
......@@ -2264,19 +2264,17 @@ find_case_label_for_value (tree switch_expr, tree val)
static bool
phi_alternatives_equal (basic_block dest, edge e1, edge e2)
{
tree phi, val1, val2;
int n1, n2;
int n1 = e1->dest_idx;
int n2 = e2->dest_idx;
tree phi;
for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
{
n1 = phi_arg_from_edge (phi, e1);
n2 = phi_arg_from_edge (phi, e2);
gcc_assert (n1 >= 0);
gcc_assert (n2 >= 0);
tree val1 = PHI_ARG_DEF (phi, n1);
tree val2 = PHI_ARG_DEF (phi, n2);
val1 = PHI_ARG_DEF (phi, n1);
val2 = PHI_ARG_DEF (phi, n2);
gcc_assert (val1 != NULL_TREE);
gcc_assert (val2 != NULL_TREE);
if (!operand_equal_for_phi_arg_p (val1, val2))
return false;
......
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