diff options
| author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-09 17:47:44 +0000 |
|---|---|---|
| committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-09 17:47:44 +0000 |
| commit | bb5a6ff07950705f2f08ed505d843f1a8e2b5815 (patch) | |
| tree | 30322dbb4ca993d88f519e9af0d881608c1b7d9e | |
| parent | fdf95cc9d51430d575013cc35f5475495dedb1db (diff) | |
| download | ppe42-gcc-bb5a6ff07950705f2f08ed505d843f1a8e2b5815.tar.gz ppe42-gcc-bb5a6ff07950705f2f08ed505d843f1a8e2b5815.zip | |
* tree-outof-ssa.c (coalesce_abnormal_edges): Fix typo in
calling phi_ssa_name_p.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87246 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 84a8c3462b1..7df898152fa 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 bff545e432d..12f6cb97909 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); |

