Commit 97e300e9 by Graham Stott Committed by Graham Stott

rtl.h: Update copyright date.


        * rtl.h: Update copyright date.
        (LOOP_MOVABLES): Fix typo.
        (LOOP_REGS): Likewise.
        (LOOP_IVS): Likewise.

From-SVN: r48494
parent 79801091
2002-01-03 Graham Stott <grahams@redhat.com> 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. * cppinit.c: Update copyright date.
Don't include output.h Don't include output.h
* Makefile.in: Update copyright date. * Makefile.in: Update copyright date.
......
/* Loop optimization definitions for GNU C-Compiler /* 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. Free Software Foundation, Inc.
This file is part of GCC. This file is part of GCC.
...@@ -33,13 +33,13 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA ...@@ -33,13 +33,13 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#define LOOP_INFO(LOOP) ((struct loop_info *) (LOOP)->aux) #define LOOP_INFO(LOOP) ((struct loop_info *) (LOOP)->aux)
/* Get a pointer to the loop movables structure. */ /* 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. */ /* 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. */ /* 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 /* 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. */ of an insn added during loop, since these don't have LUIDs. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment