diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-01-21 13:05:02 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-01-21 13:05:02 +0000 |
commit | a85ba5a883348f4375d6a315e9e6b3d06acd3bb3 (patch) | |
tree | b2e6b0496c714f324b01b35e1cf5a0b3076fb1b5 /gcc/tree-cfg.c | |
parent | 5b5e3a31b95b9fde0993d897de58c2471a0d888a (diff) | |
download | gcc-a85ba5a883348f4375d6a315e9e6b3d06acd3bb3.zip gcc-a85ba5a883348f4375d6a315e9e6b3d06acd3bb3.tar.gz gcc-a85ba5a883348f4375d6a315e9e6b3d06acd3bb3.tar.bz2 |
* tree-cfg.c: Fix comment typos.
From-SVN: r94016
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 30d276d..483b2dd 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -3983,7 +3983,7 @@ remove_forwarder_block (basic_block bb, basic_block **worklist) if (dest == bb) return false; - /* If the destination block consists of an nonlocal label, do not merge + /* If the destination block consists of a nonlocal label, do not merge it. */ label = first_stmt (dest); if (label @@ -4171,7 +4171,7 @@ remove_forwarder_block_with_phi (basic_block bb) continue; } - /* PHI arguemnts are different. Create a forwarder block by + /* PHI arguments are different. Create a forwarder block by splitting E so that we can merge PHI arguments on E to DEST. */ e = EDGE_SUCC (split_edge (e), 0); @@ -4233,8 +4233,8 @@ remove_forwarder_block_with_phi (basic_block bb) delete_basic_block (bb); } -/* This pass performs merges PHI nodes if one feeds into another. For - example, suppose we have the following: +/* This pass merges PHI nodes if one feeds into another. For example, + suppose we have the following: goto <bb 9> (<L9>); |