diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-10-30 12:15:09 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-10-30 12:15:09 +0000 |
commit | cbb1cada36cb9831e9a20629e1f5c555c2a84590 (patch) | |
tree | 7bd70e74e275103808e2127e4b17cbf0c74da70b | |
parent | e57a6d4273cb4afd9d010b84ab7371fb162a7197 (diff) | |
download | gcc-cbb1cada36cb9831e9a20629e1f5c555c2a84590.zip gcc-cbb1cada36cb9831e9a20629e1f5c555c2a84590.tar.gz gcc-cbb1cada36cb9831e9a20629e1f5c555c2a84590.tar.bz2 |
* tree-ssa-dom.c: Fix comment typos.
From-SVN: r89885
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-dom.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4307456..a0781cb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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] diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index b50767f..a7f0aaf 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -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)) { |