tree-outof-ssa.c (coalesce_abnormal_edges): Fix typo in calling phi_ssa_name_p.
authorDiego Novillo <dnovillo@redhat.com>
Thu, 9 Sep 2004 17:47:44 +0000 (17:47 +0000)
committerDiego Novillo <dnovillo@gcc.gnu.org>
Thu, 9 Sep 2004 17:47:44 +0000 (13:47 -0400)
* tree-outof-ssa.c (coalesce_abnormal_edges): Fix typo in
calling phi_ssa_name_p.

From-SVN: r87246

gcc/ChangeLog
gcc/tree-outof-ssa.c

index 84a8c3462b113bea674a9be27f056cbac1f13a10..7df898152fae51896865270dd4e81a264976a8c5 100644 (file)
@@ -1,3 +1,8 @@
+2004-09-09  Diego Novillo  <dnovillo@redhat.com>
+
+       * tree-outof-ssa.c (coalesce_abnormal_edges): Fix typo in
+       calling phi_ssa_name_p.
+
 2004-09-09  Richard Henderson  <rth@redhat.com>
 
        PR c/17322
index bff545e432d2338966c2e6b1a42c625e8f4d28e6..12f6cb979099d598739edac79457fb7192028679 100644 (file)
@@ -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);