* tree-outof-ssa.c (coalesce_abnormal_edges): Fix typo in
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 9 Sep 2004 17:47:44 +0000 (17:47 +0000)
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 9 Sep 2004 17:47:44 +0000 (17:47 +0000)
calling phi_ssa_name_p.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87246 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 84a8c34..7df8981 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 bff545e..12f6cb9 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);