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]

Re: [patches] [cfg-brach]: superblock formation



Honza,

I've spotted a number of typos in your patch and committed them as
obvious.  The english is still not perfect but should be a bit better,


Andreas

2001-11-12  Andreas Jaeger  <aj@suse.de>

	* tracer.c: Fix spelling and whitespace.

Index: tracer.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/Attic/tracer.c,v
retrieving revision 1.1.2.1
diff -u -r1.1.2.1 tracer.c
--- tracer.c	2001/11/12 17:37:20	1.1.2.1
+++ tracer.c	2001/11/12 18:52:50
@@ -1,5 +1,5 @@
 /* The tracer pass for the GNU compiler.
-   Contributed by Jan Hubicka, SuSe labs.
+   Contributed by Jan Hubicka, SuSE Labs.
    Copyright (C) 2001 Free Software Foundation, Inc.
 
    This file is part of GCC.
@@ -19,17 +19,18 @@
    Software Foundation, 59 Temple Place - Suite 330, Boston, MA
    02111-1307, USA.  */
 
-/* This pass performs the tail dupplication needed for superblock formation.
-   For more infromation see:
+/* This pass performs the tail duplication needed for superblock formation.
+   For more information see:
 
      Design and Analysis of Profile-Based Optimization in Compaq's
      Compilation Tools for Alpha; Journal of Instruction-Level
      Parallelism 3 (2000) 1-25
 
-   Unlike the Compaq's implementation we don't do the loop peeling as most
-   probably better job can be done by special pass and we don't need to worry
-   too much about the code size implications as the tail duplicates are
-   crossjumped again if optimizations are not performed.  */
+   Unlike Compaq's implementation we don't do the loop peeling as most
+   probably a better job can be done by a special pass and we don't
+   need to worry too much about the code size implications as the tail
+   duplicates are crossjumped again if optimizations are not
+   performed.  */
 
 
 #include "config.h"
@@ -106,7 +107,7 @@
     {
       blocks [i] = BASIC_BLOCK (i);
     }
- 
+
   qsort (blocks, numblocks, sizeof (basic_block), cmpblocks);
 
   for (i = 0; i < numblocks; i++)
@@ -179,7 +180,7 @@
 /* Connect the traces into linear seuqence.  At the moment we attempt to keep
    the original order as much as possible, but the algorithm may be made smarter
    later if needed.  BB reordering pass should void most of the benefits of such
-   chagne tought.  */
+   change though.  */
 
 static void
 layout_traces ()

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de
    http://www.suse.de/~aj


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