* tree-ssa-dom.c: Fix comment typos.
authorKazu Hirata <kazu@cs.umass.edu>
Sat, 30 Oct 2004 12:15:09 +0000 (12:15 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sat, 30 Oct 2004 12:15:09 +0000 (12:15 +0000)
From-SVN: r89885

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

index 43074566defcb6b064d079cdab08cca6401eb069..a0781cb574b4173e8316cceb8fc5a47f53b7a8fc 100644 (file)
@@ -1,3 +1,7 @@
+2004-10-30  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * tree-ssa-dom.c: Fix comment typos.
+
 2004-10-30  Kaz Kojima  <kkojima@gcc.gnu.org>
 
        * config/sh/sh.c (prepare_move_operands): Use operands[0]
index b50767fba53c36bca01c4e05c317950da7311b8e..a7f0aaf0c6161fe3dbdd68622cf9084efbfee665 100644 (file)
@@ -329,7 +329,7 @@ allocate_edge_info (edge e)
 }
 
 /* Free all EDGE_INFO structures associated with edges in the CFG.
-   If a partciular edge can be threaded, copy the redirection
+   If a particular edge can be threaded, copy the redirection
    target from the EDGE_INFO structure into the edge's AUX field
    as required by code to update the CFG and SSA graph for
    jump threading.  */
@@ -2431,7 +2431,7 @@ record_edge_info (basic_block bb)
 
          extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
 
-         /* If the conditinoal is a single variable 'X', record 'X = 1'
+         /* If the conditional is a single variable 'X', record 'X = 1'
             for the true edge and 'X = 0' on the false edge.  */
          if (SSA_VAR_P (cond))
            {