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]

Fix comment mispellings


Howdy,

The following patch fixes some comment misspellings.

Committed as obvious.

-- 
Matt Kraai          kraai@alumni.cmu.edu          Debian GNU/Linux

Index: gcc/gcse.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/gcse.c,v
retrieving revision 1.254
diff -3 -c -p -r1.254 gcse.c
*** gcc/gcse.c	1 Jul 2003 12:17:53 -0000	1.254
--- gcc/gcse.c	3 Jul 2003 05:24:08 -0000
*************** first_ls_expr ()
*** 6728,6734 ****
    return pre_ldst_mems;
  }
  
! /* Return the next item in ther list after the specified one.  */
  
  static inline struct ls_expr *
  next_ls_expr (ptr)
--- 6728,6734 ----
    return pre_ldst_mems;
  }
  
! /* Return the next item in the list after the specified one.  */
  
  static inline struct ls_expr *
  next_ls_expr (ptr)
Index: gcc/line-map.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/line-map.c,v
retrieving revision 1.9
diff -3 -c -p -r1.9 line-map.c
*** gcc/line-map.c	20 Jun 2003 05:51:13 -0000	1.9
--- gcc/line-map.c	3 Jul 2003 05:24:10 -0000
*************** free_line_maps (struct line_maps *set)
*** 63,69 ****
  }
  
  /* Add a mapping of logical source line to physical source file and
!    line number.  Ther text pointed to by TO_FILE must have a lifetime
     at least as long as the final call to lookup_line ().
  
     FROM_LINE should be monotonic increasing across calls to this
--- 63,69 ----
  }
  
  /* Add a mapping of logical source line to physical source file and
!    line number.  The text pointed to by TO_FILE must have a lifetime
     at least as long as the final call to lookup_line ().
  
     FROM_LINE should be monotonic increasing across calls to this
Index: gcc/config/dsp16xx/dsp16xx.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/dsp16xx/dsp16xx.h,v
retrieving revision 1.62
diff -3 -c -p -r1.62 dsp16xx.h
*** gcc/config/dsp16xx/dsp16xx.h	19 Jun 2003 21:47:09 -0000	1.62
--- gcc/config/dsp16xx/dsp16xx.h	3 Jul 2003 05:24:16 -0000
*************** extern struct dsp16xx_frame_info current
*** 1455,1461 ****
  /* Define this macro as a C expression which is nonzero if accessing less
     than a word of memory (i.e a char or short) is no faster than accessing
     a word of memory, i.e if such access require more than one instruction
!    or if ther is no difference in cost between byte and (aligned) word
     loads.  */
  #define SLOW_BYTE_ACCESS 1
  
--- 1455,1461 ----
  /* Define this macro as a C expression which is nonzero if accessing less
     than a word of memory (i.e a char or short) is no faster than accessing
     a word of memory, i.e if such access require more than one instruction
!    or if there is no difference in cost between byte and (aligned) word
     loads.  */
  #define SLOW_BYTE_ACCESS 1
  


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