aboutsummaryrefslogtreecommitdiff
path: root/gcc/loop.h
diff options
context:
space:
mode:
authorGraham Stott <grahams@redhat.com>2002-01-03 04:59:07 +0000
committerGraham Stott <grahams@gcc.gnu.org>2002-01-03 04:59:07 +0000
commit97e300e9b1722ac2567eb06d6fdd553f718bd139 (patch)
tree151f916a685ad119630a62482f9cb2a0a6360a5b /gcc/loop.h
parent798010914efad2e7b17c61307de2cd1444c2fc66 (diff)
downloadgcc-97e300e9b1722ac2567eb06d6fdd553f718bd139.zip
gcc-97e300e9b1722ac2567eb06d6fdd553f718bd139.tar.gz
gcc-97e300e9b1722ac2567eb06d6fdd553f718bd139.tar.bz2
rtl.h: Update copyright date.
* rtl.h: Update copyright date. (LOOP_MOVABLES): Fix typo. (LOOP_REGS): Likewise. (LOOP_IVS): Likewise. From-SVN: r48494
Diffstat (limited to 'gcc/loop.h')
-rw-r--r--gcc/loop.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/loop.h b/gcc/loop.h
index f376fc0..55f70ff 100644
--- a/gcc/loop.h
+++ b/gcc/loop.h
@@ -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. */