aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-outof-ssa.c
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@redhat.com>2004-09-09 17:47:44 +0000
committerDiego Novillo <dnovillo@gcc.gnu.org>2004-09-09 13:47:44 -0400
commitb49ce401c20c43ae693407fdd9218fdb2e576d4f (patch)
tree30322dbb4ca993d88f519e9af0d881608c1b7d9e /gcc/tree-outof-ssa.c
parent116df7864046513771505f127b76411ecea0ede3 (diff)
downloadgcc-b49ce401c20c43ae693407fdd9218fdb2e576d4f.zip
gcc-b49ce401c20c43ae693407fdd9218fdb2e576d4f.tar.gz
gcc-b49ce401c20c43ae693407fdd9218fdb2e576d4f.tar.bz2
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
Diffstat (limited to 'gcc/tree-outof-ssa.c')
-rw-r--r--gcc/tree-outof-ssa.c2
1 files changed, 1 insertions, 1 deletions
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);