OSDN Git Service

* rtl.h: Update copyright date.
authorgrahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Jan 2002 04:59:07 +0000 (04:59 +0000)
committergrahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Jan 2002 04:59:07 +0000 (04:59 +0000)
        (LOOP_MOVABLES): Fix typo.
        (LOOP_REGS): Likewise.
        (LOOP_IVS): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48494 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/loop.h

index 1f83385..997b080 100644 (file)
@@ -1,5 +1,12 @@
 2002-01-03  Graham Stott  <grahams@redhat.com>
 
+       * loop.h: Update copyright date.
+        (LOOP_MOVABLES): Fix typo.
+        (LOOP_REGS): Likewise.
+        (LOOP_IVS): Likewise.
+       
+2002-01-03  Graham Stott  <grahams@redhat.com>
+
        * cppinit.c: Update copyright date.
        Don't include output.h
        * Makefile.in: Update copyright date.
index f376fc0..55f70ff 100644 (file)
@@ -1,5 +1,5 @@
 /* Loop optimization definitions for GNU C-Compiler
-   Copyright (C) 1991, 1995, 1998, 1999, 2000, 2001
+   Copyright (C) 1991, 1995, 1998, 1999, 2000, 2001, 2002
    Free Software Foundation, Inc.
 
 This file is part of GCC.
@@ -33,13 +33,13 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #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)
+#define LOOP_MOVABLES(LOOP) (&LOOP_INFO (LOOP)->movables)
 
 /* Get a pointer to the loop registers structure.  */
-#define LOOP_REGS(LOOP) (&LOOP_INFO (loop)->regs)
+#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)
+#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.  */