* tree-ssa-phiopt.c: Fix comment typos.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 20 Apr 2005 13:11:08 +0000 (13:11 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 20 Apr 2005 13:11:08 +0000 (13:11 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98456 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-ssa-phiopt.c

index bb9d66a..298e67a 100644 (file)
@@ -1,3 +1,7 @@
+2005-04-20  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * tree-ssa-phiopt.c: Fix comment typos.
+
 2005-04-19  Richard Henderson  <rth@redhat.com>
 
        * builtins.c (expand_builtin_sync_operation): Revert last change.
index b935407..bc284ec 100644 (file)
@@ -56,7 +56,7 @@ static basic_block *blocks_in_phiopt_order (void);
    Conditional Replacement
    -----------------------
 
-   This transformation, implmented in conditional_replacement,
+   This transformation, implemented in conditional_replacement,
    replaces
 
      bb0:
@@ -133,7 +133,7 @@ static basic_block *blocks_in_phiopt_order (void);
      bb2:
        x = PHI <x' (bb0), ...>;
 
-   A similar transformtion is done for MAX_EXPR.  */
+   A similar transformation is done for MAX_EXPR.  */
 
 static void
 tree_ssa_phiopt (void)