diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-08 12:43:37 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-08 12:43:37 +0000 |
commit | 4b2bb87d4baa6ba3926634c3293b0ca84728dfdd (patch) | |
tree | 7db37d8cee48845e5f2ed3911f926370d15ae5f2 /gcc | |
parent | 360139876e080a505c41ad40e7fec7383a93fc8f (diff) | |
download | gcc-4b2bb87d4baa6ba3926634c3293b0ca84728dfdd.zip gcc-4b2bb87d4baa6ba3926634c3293b0ca84728dfdd.tar.gz gcc-4b2bb87d4baa6ba3926634c3293b0ca84728dfdd.tar.bz2 |
* tree-ssa-phiopt.c: Fix a comment typo.
From-SVN: r96099
Diffstat (limited to 'gcc')
-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 82bd14d..691484e 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 048211b..bbdd732 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); |