From b49ce401c20c43ae693407fdd9218fdb2e576d4f Mon Sep 17 00:00:00 2001 From: Diego Novillo Date: Thu, 9 Sep 2004 17:47:44 +0000 Subject: [PATCH] tree-outof-ssa.c (coalesce_abnormal_edges): Fix typo in calling phi_ssa_name_p. * tree-outof-ssa.c (coalesce_abnormal_edges): Fix typo in calling phi_ssa_name_p. From-SVN: r87246 --- gcc/ChangeLog | 5 +++++ gcc/tree-outof-ssa.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 84a8c3462b1..7df898152fa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-09-09 Diego Novillo + + * tree-outof-ssa.c (coalesce_abnormal_edges): Fix typo in + calling phi_ssa_name_p. + 2004-09-09 Richard Henderson PR c/17322 diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c index bff545e432d..12f6cb97909 100644 --- a/gcc/tree-outof-ssa.c +++ b/gcc/tree-outof-ssa.c @@ -614,7 +614,7 @@ coalesce_abnormal_edges (var_map map, conflict_graph graph, root_var_p rv) internal_error ("SSA corruption"); } #else - gcc_assert (phi_ssa_name (tmp)); + gcc_assert (phi_ssa_name_p (tmp)); #endif y = var_to_partition (map, tmp); gcc_assert (x != NO_PARTITION);