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-23  Kazu Hirata  <kazu@cs.umass.edu>

	* final.c, ipa-inline.c, varasm.c: Fix comment typos.

Index: final.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/final.c,v
retrieving revision 1.352
diff -u -d -p -r1.352 final.c
--- final.c	22 Apr 2005 16:14:53 -0000	1.352
+++ final.c	23 Apr 2005 14:18:43 -0000
@@ -3135,7 +3135,7 @@ output_operand (rtx x, int code ATTRIBUT
   if (x && GET_CODE (x) == SUBREG)
     x = alter_subreg (&x);
 
-  /* X must not be a psuedo reg.  */
+  /* X must not be a pseudo reg.  */
   gcc_assert (!x || !REG_P (x) || REGNO (x) < FIRST_PSEUDO_REGISTER);
 
   PRINT_OPERAND (asm_out_file, x, code);
Index: ipa-inline.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ipa-inline.c,v
retrieving revision 2.1
diff -u -d -p -r2.1 ipa-inline.c
--- ipa-inline.c	22 Apr 2005 08:16:54 -0000	2.1
+++ ipa-inline.c	23 Apr 2005 14:18:43 -0000
@@ -30,7 +30,7 @@ Software Foundation, 59 Temple Place - S
 
     cgraph_mark_inline implementation
 
-      This function allow to mark given call inline and performs neccesary
+      This function allow to mark given call inline and performs necessary
       modifications of cgraph (production of the clones and updating overall
       statistics)
 
Index: varasm.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/varasm.c,v
retrieving revision 1.502
diff -u -d -p -r1.502 varasm.c
--- varasm.c	22 Apr 2005 10:14:43 -0000	1.502
+++ varasm.c	23 Apr 2005 14:18:44 -0000
@@ -2259,7 +2259,7 @@ assemble_real (REAL_VALUE_TYPE d, enum m
 /* Given an expression EXP with a constant value,
    reduce it to the sum of an assembler symbol and an integer.
    Store them both in the structure *VALUE.
-   EXP must be reduceable.  */
+   EXP must be reducible.  */
 
 struct addr_const GTY(())
 {


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