Commit b49ce401 by Diego Novillo Committed by Diego Novillo

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
parent 116df786
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> 2004-09-09 Richard Henderson <rth@redhat.com>
PR c/17322 PR c/17322
......
...@@ -614,7 +614,7 @@ coalesce_abnormal_edges (var_map map, conflict_graph graph, root_var_p rv) ...@@ -614,7 +614,7 @@ coalesce_abnormal_edges (var_map map, conflict_graph graph, root_var_p rv)
internal_error ("SSA corruption"); internal_error ("SSA corruption");
} }
#else #else
gcc_assert (phi_ssa_name (tmp)); gcc_assert (phi_ssa_name_p (tmp));
#endif #endif
y = var_to_partition (map, tmp); y = var_to_partition (map, tmp);
gcc_assert (x != NO_PARTITION); gcc_assert (x != NO_PARTITION);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment