From 4b2bb87d4baa6ba3926634c3293b0ca84728dfdd Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Tue, 8 Mar 2005 12:43:37 +0000 Subject: [PATCH] * tree-ssa-phiopt.c: Fix a comment typo. From-SVN: r96099 --- gcc/ChangeLog | 4 ++++ gcc/tree-ssa-phiopt.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 82bd14d75fbb..691484e46927 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-03-08 Kazu Hirata + + * tree-ssa-phiopt.c: Fix a comment typo. + 2005-03-08 Richard Henderson * 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 048211b0dfef..bbdd732fe125 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);