From: Kazu Hirata Date: Fri, 21 Jan 2005 13:05:02 +0000 (+0000) Subject: * tree-cfg.c: Fix comment typos. X-Git-Tag: releases/gcc-4.0.0~1391 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a85ba5a883348f4375d6a315e9e6b3d06acd3bb3;p=thirdparty%2Fgcc.git * tree-cfg.c: Fix comment typos. From-SVN: r94016 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e841f8cfc428..0c3a3508c932 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-01-21 Kazu Hirata + + * tree-cfg.c: Fix comment typos. + 2005-01-21 J"orn Rennecke * passes.c (rest_of_handle_flow2): Close / open the flow2 dump file diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 30d276d4f112..483b2dd81bd8 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 ();