* tree-ssa-phiopt.c: Fix a comment typo.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 8 Mar 2005 12:43:37 +0000 (12:43 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 8 Mar 2005 12:43:37 +0000 (12:43 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96099 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 82bd14d..691484e 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-08  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * tree-ssa-phiopt.c: Fix a comment typo.
+
 2005-03-08  Richard Henderson  <rth@redhat.com>
 
        * config/alpha/alpha.c (code_for_builtin): Replace special-case
index 048211b..bbdd732 100644 (file)
@@ -317,7 +317,7 @@ conditional_replacement (basic_block cond_bb, basic_block middle_bb,
      edge so that we know when to invert the condition below.  */
   extract_true_false_edges_from_block (cond_bb, &true_edge, &false_edge);
 
-  /* Insert our new statement at the end of condtional block before the
+  /* Insert our new statement at the end of conditional block before the
      COND_EXPR.  */
   bsi = bsi_last (cond_bb);
   bsi_insert_before (&bsi, build_empty_stmt (), BSI_NEW_STMT);