From: dnovillo Date: Thu, 9 Sep 2004 17:47:44 +0000 (+0000) Subject: * tree-outof-ssa.c (coalesce_abnormal_edges): Fix typo in X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bb5a6ff07950705f2f08ed505d843f1a8e2b5815;p=thirdparty%2Fgcc.git * tree-outof-ssa.c (coalesce_abnormal_edges): Fix typo in calling phi_ssa_name_p. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87246 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 84a8c3462b11..7df898152fae 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 bff545e432d2..12f6cb979099 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);