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
This commit is contained in:
Diego Novillo 2004-09-09 17:47:44 +00:00 committed by Diego Novillo
parent 116df78640
commit b49ce401c2
2 changed files with 6 additions and 1 deletions

View 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

View 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);