OSDN Git Service

* tree-cfg.c: Fix comment typos.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 21 Jan 2005 13:05:02 +0000 (13:05 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 21 Jan 2005 13:05:02 +0000 (13:05 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@94016 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-cfg.c

index e841f8c..0c3a350 100644 (file)
@@ -1,3 +1,7 @@
+2005-01-21  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * tree-cfg.c: Fix comment typos.
+
 2005-01-21  J"orn Rennecke <joern.rennecke@st.com>
 
        * passes.c (rest_of_handle_flow2): Close / open the flow2 dump file
index 30d276d..483b2dd 100644 (file)
@@ -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>);