diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-loop-manip.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 791cfd8..46711da 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-11-13 Kazu Hirata <kazu@cs.umass.edu> + + * tree-ssa-loop-manip.c: Fix a comment typo. + 2004-11-12 Mike Stump <mrs@apple.com> * doc/cppinternals.texi (Index): Fix html generation with makeinfo by diff --git a/gcc/tree-ssa-loop-manip.c b/gcc/tree-ssa-loop-manip.c index 56fa002..99e1031 100644 --- a/gcc/tree-ssa-loop-manip.c +++ b/gcc/tree-ssa-loop-manip.c @@ -571,7 +571,7 @@ set_phi_def_stmts (basic_block bb) SSA_NAME_DEF_STMT (PHI_RESULT (phi)) = phi; } -/* The same ad cfgloopmanip.c:duplicate_loop_to_header_edge, but also updates +/* The same as cfgloopmanip.c:duplicate_loop_to_header_edge, but also updates ssa. In order to achieve this, only loops whose exits all lead to the same location are handled. |