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: Fix comment typos.


Hi,

Committed as obvious.

Kazu Hirata

2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>

	* c-ppoutput.c, var-tracking.c: Fix comment typos.

Index: c-ppoutput.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/c-ppoutput.c,v
retrieving revision 1.12
diff -u -r1.12 c-ppoutput.c
--- c-ppoutput.c	5 Feb 2004 06:52:26 -0000	1.12
+++ c-ppoutput.c	7 Feb 2004 13:52:38 -0000
@@ -335,7 +335,7 @@
 }
 
 /* Callback called when -fworking-director and -E to emit working
-   diretory in cpp output file. */
+   directory in cpp output file.  */
 
 void
 pp_dir_change (cpp_reader *pfile ATTRIBUTE_UNUSED, const char *dir)
Index: var-tracking.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/var-tracking.c,v
retrieving revision 2.1
diff -u -r2.1 var-tracking.c
--- var-tracking.c	6 Feb 2004 20:03:44 -0000	2.1
+++ var-tracking.c	7 Feb 2004 13:52:40 -0000
@@ -455,7 +455,7 @@
     }
 }
 
-/* Compute stack adjustnment in basic block BB.  */
+/* Compute stack adjustment in basic block BB.  */
 
 static void
 bb_stack_adjust_offset (basic_block bb)
@@ -522,7 +522,7 @@
   edge *stack;
   int sp;
 
-  /* Initialize enttry block.  */
+  /* Initialize entry block.  */
   VTI (ENTRY_BLOCK_PTR)->visited = true;
   VTI (ENTRY_BLOCK_PTR)->out.stack_adjust = 0;
 
@@ -2451,7 +2451,7 @@
 	    }
 	}
 
-      /* Add the nicro-operations to the array.  */
+      /* Add the micro-operations to the array.  */
       VTI (bb)->mos = xmalloc (VTI (bb)->n_mos
 			       * sizeof (struct micro_operation_def));
       VTI (bb)->n_mos = 0;


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