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 typos in loop.h


All,

This patch fixes obvious typos 

Bootstrapped i686-pc-linux-gnu al languages.

Graham

ChangeLog

	* loop.h: Update copyright date.
	(LOOP_MOVABLES): Fix typo.
	(LOOP_REGS): Likewise.
	(LOOP_IVS): Likewise.
	
Index: loop.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/loop.h,v
retrieving revision 1.57
diff -c -p -r1.57 loop.h
*** loop.h      2001/12/13 11:34:06     1.57
--- loop.h      2002/01/01 07:21:14
***************
*** 1,5 ****
  /* Loop optimization definitions for GNU C-Compiler
!    Copyright (C) 1991, 1995, 1998, 1999, 2000, 2001
     Free Software Foundation, Inc.
 
  This file is part of GCC.
--- 1,5 ----
  /* Loop optimization definitions for GNU C-Compiler
!    Copyright (C) 1991, 1995, 1998, 1999, 2000, 2001, 2002
     Free Software Foundation, Inc.
 
  This file is part of GCC.
*************** Software Foundation, 59 Temple Place - S
*** 33,45 ****
  #define LOOP_INFO(LOOP) ((struct loop_info *) (LOOP)->aux)
 
  /* Get a pointer to the loop movables structure.  */
! #define LOOP_MOVABLES(LOOP) (&LOOP_INFO (loop)->movables)
 
  /* Get a pointer to the loop registers structure.  */
! #define LOOP_REGS(LOOP) (&LOOP_INFO (loop)->regs)
 
  /* Get a pointer to the loop induction variables structure.  */
! #define LOOP_IVS(LOOP) (&LOOP_INFO (loop)->ivs)
 
  /* Get the luid of an insn.  Catch the error of trying to reference the LUID
     of an insn added during loop, since these don't have LUIDs.  */
--- 33,45 ----
  #define LOOP_INFO(LOOP) ((struct loop_info *) (LOOP)->aux)
 
  /* Get a pointer to the loop movables structure.  */
! #define LOOP_MOVABLES(LOOP) (&LOOP_INFO (LOOP)->movables)
 
  /* Get a pointer to the loop registers structure.  */
! #define LOOP_REGS(LOOP) (&LOOP_INFO (LOOP)->regs)
 
  /* Get a pointer to the loop induction variables structure.  */
! #define LOOP_IVS(LOOP) (&LOOP_INFO (LOOP)->ivs)

  /* Get the luid of an insn.  Catch the error of trying to reference the LUID
     of an insn added during loop, since these don't have LUIDs.  */


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