diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-phiopt.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 82bd14d75fb..691484e4692 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/tree-ssa-phiopt.c b/gcc/tree-ssa-phiopt.c index 048211b0dfe..bbdd732fe12 100644 --- a/gcc/tree-ssa-phiopt.c +++ b/gcc/tree-ssa-phiopt.c @@ -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); |