]> gcc.gnu.org Git - gcc.git/commitdiff
c-common.c, [...]: Fix comment typos.
authorKazu Hirata <kazu@cs.umass.edu>
Tue, 17 Feb 2004 23:03:37 +0000 (23:03 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 17 Feb 2004 23:03:37 +0000 (23:03 +0000)
* c-common.c, cfghooks.c, rtlanal.c, varasm.c: Fix comment
typos.

From-SVN: r77995

gcc/ChangeLog
gcc/c-common.c
gcc/cfghooks.c
gcc/rtlanal.c
gcc/varasm.c

index d8f83948368799d52e81a43503b28e0b8478cd6c..3dd2ff8a1be40711700cbdac659c325e17373aa2 100644 (file)
@@ -1,3 +1,8 @@
+2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * c-common.c, cfghooks.c, rtlanal.c, varasm.c: Fix comment
+       typos.
+
 2004-02-17  Jan Hubicka  <jh@suse.cz>
 
        * i386.c (x86_prologue_using_move, x86_epilogue_using_move): Disable for P4.
index 63ce3c7176a780095e6976e611008b1bfb3e8023..2ebb915f1ec377e247319d3a99db768833b10e00 100644 (file)
@@ -5697,7 +5697,7 @@ c_estimate_num_insns_1 (tree *tp, int *walk_subtrees, void *data)
        *count += 10;
        break;
       }
-    /* Few special cases of expensive operations.  This is usefull
+    /* Few special cases of expensive operations.  This is useful
        to avoid inlining on functions having too many of these.  */
     case TRUNC_DIV_EXPR:
     case CEIL_DIV_EXPR:
index e25612424d704d415519006a6e4334349c2ce00e..183d54e387594329c349519d23840e154d2d19db 100644 (file)
@@ -320,7 +320,7 @@ split_block_after_labels (basic_block bb)
   return split_block (bb, NULL);
 }
 
-/* Moves block BB immediatelly after block AFTER.  Returns false if the
+/* Moves block BB immediately after block AFTER.  Returns false if the
    movement was impossible.  */
 
 bool
index 82a112c984602f507fba522a51c2d8f73b0c8278..c408521e4888aaabbb705b5f34f68dad410da6c5 100644 (file)
@@ -3731,7 +3731,7 @@ hoist_insn_to_edge (rtx insn, edge e, rtx val, rtx new)
     abort ();
 
   /* Do not use emit_insn_on_edge as we want to preserve notes and similar
-     stuff.  We also emit CALL_INSNS and firends.  */
+     stuff.  We also emit CALL_INSNS and friends.  */
   if (e->insns == NULL_RTX)
     {
       start_sequence ();
index cbcef0a1e1d15537577865bb1c5185cddaab309f..806224d5278c5bb56252a671406d81bd285c9e76 100644 (file)
@@ -1002,7 +1002,7 @@ notice_global_symbol (tree decl)
       || GET_CODE (DECL_RTL (decl)) != MEM)
     return;
 
-  /* We win when global object is found, but it is usefull to know about weak
+  /* We win when global object is found, but it is useful to know about weak
      symbol as well so we can produce nicer unique names.  */
   if (DECL_WEAK (decl) || DECL_ONE_ONLY (decl))
     type = &weak_global_object_name;
This page took 0.086824 seconds and 5 git commands to generate.