diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-04-20 13:11:08 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-04-20 13:11:08 +0000 |
commit | edef547688623a10b30dcf4a207a3702277fd57d (patch) | |
tree | 7312044c80c4f1f35fe7d4e0a68311ad9817631e /gcc/tree-ssa-phiopt.c | |
parent | fc0ad8d9614651dfad418cb280e4e66d4a5cf72d (diff) | |
download | gcc-edef547688623a10b30dcf4a207a3702277fd57d.zip gcc-edef547688623a10b30dcf4a207a3702277fd57d.tar.gz gcc-edef547688623a10b30dcf4a207a3702277fd57d.tar.bz2 |
* tree-ssa-phiopt.c: Fix comment typos.
From-SVN: r98456
Diffstat (limited to 'gcc/tree-ssa-phiopt.c')
-rw-r--r-- | gcc/tree-ssa-phiopt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-phiopt.c b/gcc/tree-ssa-phiopt.c index b935407..bc284ec 100644 --- a/gcc/tree-ssa-phiopt.c +++ b/gcc/tree-ssa-phiopt.c @@ -56,7 +56,7 @@ static basic_block *blocks_in_phiopt_order (void); Conditional Replacement ----------------------- - This transformation, implmented in conditional_replacement, + This transformation, implemented in conditional_replacement, replaces bb0: @@ -133,7 +133,7 @@ static basic_block *blocks_in_phiopt_order (void); bb2: x = PHI <x' (bb0), ...>; - A similar transformtion is done for MAX_EXPR. */ + A similar transformation is done for MAX_EXPR. */ static void tree_ssa_phiopt (void) |