This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] gcc/*.c: Fix comment typos.


Hi,

Committed as obvious.

Kazu Hirata

2005-04-01  Kazu Hirata  <kazu@cs.umass.edu>

	* bb-reorder.c, fold-const.c, varasm.c: Fix comment typos.

Index: bb-reorder.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/bb-reorder.c,v
retrieving revision 1.96
diff -u -d -p -r1.96 bb-reorder.c
--- bb-reorder.c	31 Mar 2005 14:59:46 -0000	1.96
+++ bb-reorder.c	1 Apr 2005 14:27:05 -0000
@@ -1779,7 +1779,7 @@ add_reg_crossing_jump_notes (void)
 								  (e->src)));
 }
 
-/* Hot and cold basic blocks are partitioneed and put in separate
+/* Hot and cold basic blocks are partitioned and put in separate
    sections of the .o file, to reduce paging and improve cache
    performance (hopefully).  This can result in bits of code from the
    same function being widely separated in the .o file.  However this
Index: fold-const.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fold-const.c,v
retrieving revision 1.551
diff -u -d -p -r1.551 fold-const.c
--- fold-const.c	25 Mar 2005 20:08:30 -0000	1.551
+++ fold-const.c	1 Apr 2005 14:27:16 -0000
@@ -10177,7 +10177,7 @@ fold_checksum_tree (tree expr, struct md
 #endif
 
 /* Fold a unary tree expression with code CODE of type TYPE with an
-   operand OP0.  Return a folded expresion if successful.  Otherwise,
+   operand OP0.  Return a folded expression if successful.  Otherwise,
    return a tree expression with code CODE of type TYPE with an
    operand OP0.  */
 
@@ -10192,7 +10192,7 @@ fold_build1 (enum tree_code code, tree t
 }
 
 /* Fold a binary tree expression with code CODE of type TYPE with
-   operands OP0 and OP1.  Return a folded expresion if successful.
+   operands OP0 and OP1.  Return a folded expression if successful.
    Otherwise, return a tree expression with code CODE of type TYPE
    with operands OP0 and OP1.  */
 
@@ -10207,7 +10207,7 @@ fold_build2 (enum tree_code code, tree t
 }
 
 /* Fold a ternary tree expression with code CODE of type TYPE with
-   operands OP0, OP1, and OP2.  Return a folded expresion if
+   operands OP0, OP1, and OP2.  Return a folded expression if
    successful.  Otherwise, return a tree expression with code CODE of
    type TYPE with operands OP0, OP1, and OP2.  */
 
Index: varasm.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/varasm.c,v
retrieving revision 1.492
diff -u -d -p -r1.492 varasm.c
--- varasm.c	1 Apr 2005 03:42:45 -0000	1.492
+++ varasm.c	1 Apr 2005 14:27:20 -0000
@@ -129,7 +129,7 @@ char *hot_section_end_label;
 
 char *cold_section_end_label;
  
-/* The following global variable indicates the seciton name to be used
+/* The following global variable indicates the section name to be used
    for the current cold section, when partitiong hot and cold basic 
    blocks into separate sections.  */
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]