diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-outof-ssa.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 84a8c34..7df8981 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c index bff545e..12f6cb9 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); |