diff options
| author | mycroft <mycroft@NetBSD.org> | 1993-08-02 17:28:42 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1993-08-02 17:28:42 +0000 |
| commit | 2cce313a8b751f32d3d95b2803bcb5e0cac2ccac (patch) | |
| tree | 481dd98bbea89b18b50fd8dac27502379e5b7709 /gnu | |
| parent | 210cab45419b639d07892767d7535c2c7760889d (diff) | |
Add RCS identifiers, remove some completely useless RCS logs and patchkit
headers, and a few other insignificant changes.
Diffstat (limited to 'gnu')
242 files changed, 732 insertions, 58 deletions
diff --git a/gnu/usr.bin/gas/subsegs.c b/gnu/usr.bin/gas/subsegs.c index c9eea3da0b2..10ef42041c0 100644 --- a/gnu/usr.bin/gas/subsegs.c +++ b/gnu/usr.bin/gas/subsegs.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: subsegs.c,v 1.2 1993/08/02 17:28:42 mycroft Exp $"; +#endif /* not lint */ + /* * Segments & sub-segments. */ diff --git a/gnu/usr.bin/gas/subsegs.h b/gnu/usr.bin/gas/subsegs.h index b8dbaf76e58..b57736665c6 100644 --- a/gnu/usr.bin/gas/subsegs.h +++ b/gnu/usr.bin/gas/subsegs.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: subsegs.h,v 1.2 1993/08/02 17:28:44 mycroft Exp $ +*/ /* * For every sub-segment the user mentions in the ASsembler program, diff --git a/gnu/usr.bin/gas/symbols.c b/gnu/usr.bin/gas/symbols.c index ce7197a8e06..9ed2816b3ed 100644 --- a/gnu/usr.bin/gas/symbols.c +++ b/gnu/usr.bin/gas/symbols.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: symbols.c,v 1.2 1993/08/02 17:28:46 mycroft Exp $"; +#endif /* not lint */ #include "as.h" #include "hash.h" diff --git a/gnu/usr.bin/gas/symbols.h b/gnu/usr.bin/gas/symbols.h index 5a52790645b..542336399fc 100644 --- a/gnu/usr.bin/gas/symbols.h +++ b/gnu/usr.bin/gas/symbols.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: symbols.h,v 1.2 1993/08/02 17:28:48 mycroft Exp $ +*/ extern struct obstack notes; /* eg FixS live here. */ diff --git a/gnu/usr.bin/gas/version.c b/gnu/usr.bin/gas/version.c index f94d3f4721e..e89c33fb650 100644 --- a/gnu/usr.bin/gas/version.c +++ b/gnu/usr.bin/gas/version.c @@ -1,3 +1,7 @@ +#ifndef lint +static char rcsid[] = "$Id: version.c,v 1.2 1993/08/02 17:28:50 mycroft Exp $"; +#endif /* not lint */ + #if defined(__STDC__) || defined(const) const #endif diff --git a/gnu/usr.bin/gas/write.c b/gnu/usr.bin/gas/write.c index c82f514609d..b6c74532296 100644 --- a/gnu/usr.bin/gas/write.c +++ b/gnu/usr.bin/gas/write.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: write.c,v 1.3 1993/08/02 17:28:53 mycroft Exp $"; +#endif /* not lint */ + /* Umm, with real good luck, this thing should be set up to do byteordering diff --git a/gnu/usr.bin/gas/write.h b/gnu/usr.bin/gas/write.h index 73276908afd..0c4fa2333ce 100644 --- a/gnu/usr.bin/gas/write.h +++ b/gnu/usr.bin/gas/write.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: write.h,v 1.2 1993/08/02 17:28:55 mycroft Exp $ +*/ /* The bit_fix was implemented to support machines that need variables to be inserted in bitfields other than 1, 2 and 4 bytes. diff --git a/gnu/usr.bin/gas/xmalloc.c b/gnu/usr.bin/gas/xmalloc.c index 78c8c7f8c4a..3a2bffb2cf1 100644 --- a/gnu/usr.bin/gas/xmalloc.c +++ b/gnu/usr.bin/gas/xmalloc.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: xmalloc.c,v 1.2 1993/08/02 17:28:57 mycroft Exp $"; +#endif /* not lint */ + /* NAME xmalloc() - get memory or bust diff --git a/gnu/usr.bin/gas/xrealloc.c b/gnu/usr.bin/gas/xrealloc.c index a5010bc9b0c..e6a55c7662a 100644 --- a/gnu/usr.bin/gas/xrealloc.c +++ b/gnu/usr.bin/gas/xrealloc.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: xrealloc.c,v 1.2 1993/08/02 17:28:58 mycroft Exp $"; +#endif /* not lint */ /* diff --git a/gnu/usr.bin/gawk/Makefile b/gnu/usr.bin/gawk/Makefile index 00efcf09af6..6734da0c85e 100644 --- a/gnu/usr.bin/gawk/Makefile +++ b/gnu/usr.bin/gawk/Makefile @@ -1,3 +1,5 @@ +# $Id: Makefile,v 1.2 1993/08/02 17:29:17 mycroft Exp $ + PROG= awk SRCS= main.c eval.c builtin.c msg.c iop.c io.c field.c array.c \ node.c version.c re.c awk.c regex.c dfa.c \ diff --git a/gnu/usr.bin/gawk/array.c b/gnu/usr.bin/gawk/array.c index 59be340c04d..ad5fd047025 100644 --- a/gnu/usr.bin/gawk/array.c +++ b/gnu/usr.bin/gawk/array.c @@ -23,6 +23,10 @@ * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: array.c,v 1.2 1993/08/02 17:29:20 mycroft Exp $"; +#endif /* not lint */ + #include "awk.h" static NODE *assoc_find P((NODE *symbol, NODE *subs, int hash1)); diff --git a/gnu/usr.bin/gawk/awk.1 b/gnu/usr.bin/gawk/awk.1 index 0338485e8db..bc1044d5228 100644 --- a/gnu/usr.bin/gawk/awk.1 +++ b/gnu/usr.bin/gawk/awk.1 @@ -1,3 +1,4 @@ +.\" $Id: awk.1,v 1.2 1993/08/02 17:29:23 mycroft Exp $ -*- nroff -*- .ds PX \s-1POSIX\s+1 .ds UX \s-1UNIX\s+1 .ds AN \s-1ANSI\s+1 diff --git a/gnu/usr.bin/gawk/awk.h b/gnu/usr.bin/gawk/awk.h index ca3997f11d4..2c73cd4ff29 100644 --- a/gnu/usr.bin/gawk/awk.h +++ b/gnu/usr.bin/gawk/awk.h @@ -21,6 +21,8 @@ * You should have received a copy of the GNU General Public License * along with GAWK; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + * $Id: awk.h,v 1.2 1993/08/02 17:29:26 mycroft Exp $ */ /* ------------------------------ Includes ------------------------------ */ diff --git a/gnu/usr.bin/gawk/builtin.c b/gnu/usr.bin/gawk/builtin.c index 9d5e3b302fd..62e8413efa4 100644 --- a/gnu/usr.bin/gawk/builtin.c +++ b/gnu/usr.bin/gawk/builtin.c @@ -23,6 +23,9 @@ * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: builtin.c,v 1.2 1993/08/02 17:29:28 mycroft Exp $"; +#endif /* not lint */ #include "awk.h" diff --git a/gnu/usr.bin/gawk/config.h b/gnu/usr.bin/gawk/config.h index 8c20953ed53..7a4b3d08a40 100644 --- a/gnu/usr.bin/gawk/config.h +++ b/gnu/usr.bin/gawk/config.h @@ -23,6 +23,8 @@ * You should have received a copy of the GNU General Public License * along with GAWK; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + * $Id: config.h,v 1.2 1993/08/02 17:29:30 mycroft Exp $ */ /* diff --git a/gnu/usr.bin/gawk/dfa.c b/gnu/usr.bin/gawk/dfa.c index 5293c755871..0a5b9a27094 100644 --- a/gnu/usr.bin/gawk/dfa.c +++ b/gnu/usr.bin/gawk/dfa.c @@ -104,6 +104,10 @@ software. In other words, you are welcome to use, share and improve this program. You are forbidden to forbid anyone else to use, share and improve what you give them. Help stamp out software-hoarding! */ + +#ifndef lint +static char rcsid[] = "$Id: dfa.c,v 1.2 1993/08/02 17:29:33 mycroft Exp $"; +#endif /* not lint */ #include "awk.h" #include <assert.h> diff --git a/gnu/usr.bin/gawk/dfa.h b/gnu/usr.bin/gawk/dfa.h index 65fc49565a7..4b633a0ad5b 100644 --- a/gnu/usr.bin/gawk/dfa.h +++ b/gnu/usr.bin/gawk/dfa.h @@ -101,7 +101,10 @@ software. In other words, you are welcome to use, share and improve this program. You are forbidden to forbid anyone else to use, share and improve -what you give them. Help stamp out software-hoarding! */ +what you give them. Help stamp out software-hoarding! + + $Id: dfa.h,v 1.2 1993/08/02 17:29:36 mycroft Exp $ +*/ #ifdef __STDC__ diff --git a/gnu/usr.bin/gawk/eval.c b/gnu/usr.bin/gawk/eval.c index f640f3733ad..3e0457411cd 100644 --- a/gnu/usr.bin/gawk/eval.c +++ b/gnu/usr.bin/gawk/eval.c @@ -23,6 +23,10 @@ * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: eval.c,v 1.2 1993/08/02 17:29:38 mycroft Exp $"; +#endif /* not lint */ + #include "awk.h" extern double pow P((double x, double y)); diff --git a/gnu/usr.bin/gawk/field.c b/gnu/usr.bin/gawk/field.c index d8f9a545563..7d28eebd324 100644 --- a/gnu/usr.bin/gawk/field.c +++ b/gnu/usr.bin/gawk/field.c @@ -23,6 +23,10 @@ * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: field.c,v 1.2 1993/08/02 17:29:41 mycroft Exp $"; +#endif /* not lint */ + #include "awk.h" static int (*parse_field) P((int, char **, int, NODE *, diff --git a/gnu/usr.bin/gawk/getopt.c b/gnu/usr.bin/gawk/getopt.c index bbf345c33ca..a04c2fa2aab 100644 --- a/gnu/usr.bin/gawk/getopt.c +++ b/gnu/usr.bin/gawk/getopt.c @@ -18,6 +18,10 @@ You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#ifndef lint +static char rcsid[] = "$Id: getopt.c,v 1.2 1993/08/02 17:29:44 mycroft Exp $"; +#endif /* not lint */ #ifdef GAWK #include "config.h" diff --git a/gnu/usr.bin/gawk/getopt.h b/gnu/usr.bin/gawk/getopt.h index de027434f7c..23a0dfe6ce6 100644 --- a/gnu/usr.bin/gawk/getopt.h +++ b/gnu/usr.bin/gawk/getopt.h @@ -13,7 +13,10 @@ You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: getopt.h,v 1.2 1993/08/02 17:29:47 mycroft Exp $ +*/ #ifndef _GETOPT_H #define _GETOPT_H 1 diff --git a/gnu/usr.bin/gawk/getopt1.c b/gnu/usr.bin/gawk/getopt1.c index e2127cd58d4..2f8da9e4b2a 100644 --- a/gnu/usr.bin/gawk/getopt1.c +++ b/gnu/usr.bin/gawk/getopt1.c @@ -16,6 +16,10 @@ You should have received a copy of the GNU Library General Public License along with libiberty; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#ifndef lint +static char rcsid[] = "$Id: getopt1.c,v 1.2 1993/08/02 17:29:49 mycroft Exp $"; +#endif /* not lint */ #ifdef LIBC /* For when compiled as part of the GNU C library. */ diff --git a/gnu/usr.bin/gawk/io.c b/gnu/usr.bin/gawk/io.c index 7004aedd519..ffcab63bbb1 100644 --- a/gnu/usr.bin/gawk/io.c +++ b/gnu/usr.bin/gawk/io.c @@ -23,6 +23,10 @@ * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: io.c,v 1.2 1993/08/02 17:29:52 mycroft Exp $"; +#endif /* not lint */ + #include "awk.h" #ifndef O_RDONLY diff --git a/gnu/usr.bin/gawk/iop.c b/gnu/usr.bin/gawk/iop.c index 0d7af1213db..62f5a1fb724 100644 --- a/gnu/usr.bin/gawk/iop.c +++ b/gnu/usr.bin/gawk/iop.c @@ -23,6 +23,10 @@ * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: iop.c,v 1.2 1993/08/02 17:29:54 mycroft Exp $"; +#endif /* not lint */ + #include "awk.h" #ifndef atarist diff --git a/gnu/usr.bin/gawk/msg.c b/gnu/usr.bin/gawk/msg.c index b60fe9d1e5e..508935ac523 100644 --- a/gnu/usr.bin/gawk/msg.c +++ b/gnu/usr.bin/gawk/msg.c @@ -23,6 +23,10 @@ * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: msg.c,v 1.2 1993/08/02 17:29:55 mycroft Exp $"; +#endif /* not lint */ + #include "awk.h" int sourceline = 0; diff --git a/gnu/usr.bin/gawk/node.c b/gnu/usr.bin/gawk/node.c index 65ecb0ed172..9ac2469f81e 100644 --- a/gnu/usr.bin/gawk/node.c +++ b/gnu/usr.bin/gawk/node.c @@ -23,6 +23,10 @@ * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: node.c,v 1.2 1993/08/02 17:29:58 mycroft Exp $"; +#endif /* not lint */ + #include "awk.h" extern double strtod(); diff --git a/gnu/usr.bin/gawk/patchlevel.h b/gnu/usr.bin/gawk/patchlevel.h index c6161a1f274..52310646c64 100644 --- a/gnu/usr.bin/gawk/patchlevel.h +++ b/gnu/usr.bin/gawk/patchlevel.h @@ -1 +1,3 @@ +/* $Id: patchlevel.h,v 1.2 1993/08/02 17:30:00 mycroft Exp $ */ + #define PATCHLEVEL 2 diff --git a/gnu/usr.bin/gawk/protos.h b/gnu/usr.bin/gawk/protos.h index 25af32165b0..8c2980550a8 100644 --- a/gnu/usr.bin/gawk/protos.h +++ b/gnu/usr.bin/gawk/protos.h @@ -21,6 +21,8 @@ * You should have received a copy of the GNU General Public License * along with GAWK; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + * $Id: protos.h,v 1.2 1993/08/02 17:30:01 mycroft Exp $ */ #ifdef __STDC__ diff --git a/gnu/usr.bin/gawk/re.c b/gnu/usr.bin/gawk/re.c index 495b0963cad..4407cebf178 100644 --- a/gnu/usr.bin/gawk/re.c +++ b/gnu/usr.bin/gawk/re.c @@ -23,6 +23,10 @@ * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: re.c,v 1.2 1993/08/02 17:30:03 mycroft Exp $"; +#endif /* not lint */ + #include "awk.h" /* Generate compiled regular expressions */ diff --git a/gnu/usr.bin/gawk/regex.c b/gnu/usr.bin/gawk/regex.c index f4dd4c2cd24..916637be532 100644 --- a/gnu/usr.bin/gawk/regex.c +++ b/gnu/usr.bin/gawk/regex.c @@ -15,6 +15,9 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: regex.c,v 1.2 1993/08/02 17:30:07 mycroft Exp $"; +#endif /* not lint */ /* To test, compile with -Dtest. This Dtestable feature turns this into a self-contained program which reads a pattern, describes how it diff --git a/gnu/usr.bin/gawk/regex.h b/gnu/usr.bin/gawk/regex.h index fce11c3a97d..3b22220b20e 100644 --- a/gnu/usr.bin/gawk/regex.h +++ b/gnu/usr.bin/gawk/regex.h @@ -14,8 +14,10 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + $Id: regex.h,v 1.2 1993/08/02 17:30:13 mycroft Exp $ +*/ #ifndef __REGEXP_LIBRARY #define __REGEXP_LIBRARY diff --git a/gnu/usr.bin/gcc2/cc/g++.1 b/gnu/usr.bin/gcc2/cc/g++.1 index 38d4410f800..38bccc7e260 100644 --- a/gnu/usr.bin/gcc2/cc/g++.1 +++ b/gnu/usr.bin/gcc2/cc/g++.1 @@ -1,5 +1,8 @@ -.\" Copyright (c) 1991, 1992 Free Software Foundation -*-Text-*- +.\" Copyright (c) 1991, 1992 Free Software Foundation -*- nroff -*- .\" See section COPYING for conditions for redistribution +.\" +.\" $Id: g++.1,v 1.2 1993/08/02 17:32:30 mycroft Exp $ +.\" .\" FIXME: no info here on predefines. Should there be? extra for C++... .TH G++ 1 "30apr1993" "GNU Tools" "GNU Tools" .de BP diff --git a/gnu/usr.bin/gcc2/cc/gcc.1 b/gnu/usr.bin/gcc2/cc/gcc.1 index 07755f17073..6744e3fbf59 100644 --- a/gnu/usr.bin/gcc2/cc/gcc.1 +++ b/gnu/usr.bin/gcc2/cc/gcc.1 @@ -1,5 +1,8 @@ -.\" Copyright (c) 1991, 1992, 1993 Free Software Foundation -*-Text-*- +.\" Copyright (c) 1991, 1992, 1993 Free Software Foundation -*- nroff -*- .\" See section COPYING for conditions for redistribution +.\" +.\" $Id: gcc.1,v 1.2 1993/08/02 17:32:33 mycroft Exp $ +.\" .TH GCC 1 "30apr1993" "GNU Tools" "GNU Tools" .de BP .sp diff --git a/gnu/usr.bin/gcc2/cc/gcc.c b/gnu/usr.bin/gcc2/cc/gcc.c index 1cab4632a40..5a149f14147 100644 --- a/gnu/usr.bin/gcc2/cc/gcc.c +++ b/gnu/usr.bin/gcc2/cc/gcc.c @@ -20,6 +20,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. This paragraph is here to try to keep Sun CC from dying. The number of chars here seems crucial!!!! */ +#ifndef lint +static char rcsid[] = "$Id: gcc.c,v 1.3 1993/08/02 17:32:36 mycroft Exp $"; +#endif /* not lint */ + /* This program is the user interface to the C compiler and possibly to other compilers. It is used because compilation is a complicated procedure which involves running several programs and passing temporary files between diff --git a/gnu/usr.bin/gcc2/cc1obj/Makefile b/gnu/usr.bin/gcc2/cc1obj/Makefile index b2d1793792d..f11d5b0a69f 100644 --- a/gnu/usr.bin/gcc2/cc1obj/Makefile +++ b/gnu/usr.bin/gcc2/cc1obj/Makefile @@ -1,3 +1,5 @@ +# $Id: Makefile,v 1.4 1993/08/02 17:30:31 mycroft Exp $ + PROG= cc1obj BINDIR= /usr/libexec SRCS= objc-parse.c objc-act.c \ diff --git a/gnu/usr.bin/gcc2/cc1obj/objc-act.c b/gnu/usr.bin/gcc2/cc1obj/objc-act.c index a307b336be6..1d680c2abd6 100644 --- a/gnu/usr.bin/gcc2/cc1obj/objc-act.c +++ b/gnu/usr.bin/gcc2/cc1obj/objc-act.c @@ -18,6 +18,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: objc-act.c,v 1.2 1993/08/02 17:30:37 mycroft Exp $"; +#endif /* not lint */ + /* Purpose: This module implements the Objective-C 4.0 language. compatibility issues (with the Stepstone translator): diff --git a/gnu/usr.bin/gcc2/cc1obj/objc-act.h b/gnu/usr.bin/gcc2/cc1obj/objc-act.h index e6765d9168d..1b0a1f65283 100644 --- a/gnu/usr.bin/gcc2/cc1obj/objc-act.h +++ b/gnu/usr.bin/gcc2/cc1obj/objc-act.h @@ -15,8 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + $Id: objc-act.h,v 1.2 1993/08/02 17:30:44 mycroft Exp $ +*/ /*** Public Interface (procedures) ***/ diff --git a/gnu/usr.bin/gcc2/cc1obj/objc-parse.c b/gnu/usr.bin/gcc2/cc1obj/objc-parse.c index 46676c062df..e8d014b24a3 100644 --- a/gnu/usr.bin/gcc2/cc1obj/objc-parse.c +++ b/gnu/usr.bin/gcc2/cc1obj/objc-parse.c @@ -1,6 +1,10 @@ /* A Bison parser, made from objc-parse.y */ +#ifndef lint +static char rcsid[] = "$Id: objc-parse.c,v 1.2 1993/08/02 17:30:49 mycroft Exp $"; +#endif /* not lint */ + #define YYBISON 1 /* Identify Bison output. */ #define IDENTIFIER 258 diff --git a/gnu/usr.bin/gcc2/cc1plus/Makefile b/gnu/usr.bin/gcc2/cc1plus/Makefile index f37b632c44e..b66f3480d63 100644 --- a/gnu/usr.bin/gcc2/cc1plus/Makefile +++ b/gnu/usr.bin/gcc2/cc1plus/Makefile @@ -1,3 +1,5 @@ +# $Id: Makefile,v 1.4 1993/08/02 17:31:18 mycroft Exp $ + PROG= cc1plus BINDIR= /usr/libexec SRCS= cp-parse.c cp-decl.c cp-decl2.c cp-typeck.c cp-type2.c \ diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-call.c b/gnu/usr.bin/gcc2/cc1plus/cp-call.c index b0650cad566..70758e3a1b7 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-call.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-call.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-call.c,v 1.2 1993/08/02 17:31:21 mycroft Exp $"; +#endif /* not lint */ /* High-level class interface. */ diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-class.c b/gnu/usr.bin/gcc2/cc1plus/cp-class.c index 49e8581dd36..83e5bfcc32d 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-class.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-class.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-class.c,v 1.2 1993/08/02 17:31:25 mycroft Exp $"; +#endif /* not lint */ /* High-level class interface. */ diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-class.h b/gnu/usr.bin/gcc2/cc1plus/cp-class.h index 2c042d72741..a8efd2bcf31 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-class.h +++ b/gnu/usr.bin/gcc2/cc1plus/cp-class.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: cp-class.h,v 1.2 1993/08/02 17:31:27 mycroft Exp $ +*/ /* The following structure is used when comparing various alternatives for overloading. The unsigned quantity `strikes.i' is used diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-cvt.c b/gnu/usr.bin/gcc2/cc1plus/cp-cvt.c index 998c5034925..583d0d4ff3d 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-cvt.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-cvt.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-cvt.c,v 1.2 1993/08/02 17:31:29 mycroft Exp $"; +#endif /* not lint */ /* This file contains the functions for converting C expressions to different data types. The only entry point is `convert'. diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-decl.c b/gnu/usr.bin/gcc2/cc1plus/cp-decl.c index b888baa16b7..74f70951f5a 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-decl.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-decl.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-decl.c,v 1.2 1993/08/02 17:31:34 mycroft Exp $"; +#endif /* not lint */ /* Process declarations and symbol lookup for C front end. Also constructs types; the standard scalar types at initialization, diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-decl.h b/gnu/usr.bin/gcc2/cc1plus/cp-decl.h index aabfa2fb926..c184292d8cf 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-decl.h +++ b/gnu/usr.bin/gcc2/cc1plus/cp-decl.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: cp-decl.h,v 1.2 1993/08/02 17:31:39 mycroft Exp $ +*/ /* In grokdeclarator, distinguish syntactic contexts of declarators. */ enum decl_context diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-decl2.c b/gnu/usr.bin/gcc2/cc1plus/cp-decl2.c index bb1a9cd7b82..03863484cf3 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-decl2.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-decl2.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-decl2.c,v 1.2 1993/08/02 17:31:41 mycroft Exp $"; +#endif /* not lint */ /* Process declarations and symbol lookup for C front end. Also constructs types; the standard scalar types at initialization, diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-edsel.c b/gnu/usr.bin/gcc2/cc1plus/cp-edsel.c index 78b2637f78d..d475a3f359f 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-edsel.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-edsel.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-edsel.c,v 1.2 1993/08/02 17:31:43 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include "tree.h" diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-except.c b/gnu/usr.bin/gcc2/cc1plus/cp-except.c index 6f5dc3b0979..4fda974c198 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-except.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-except.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-except.c,v 1.2 1993/08/02 17:31:44 mycroft Exp $"; +#endif /* not lint */ /* High-level class interface. */ diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-expr.c b/gnu/usr.bin/gcc2/cc1plus/cp-expr.c index 77c0ab5e162..ba82c599d4c 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-expr.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-expr.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-expr.c,v 1.2 1993/08/02 17:31:45 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "rtl.h" diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-gc.c b/gnu/usr.bin/gcc2/cc1plus/cp-gc.c index f6283245839..2991d1628b3 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-gc.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-gc.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-gc.c,v 1.2 1993/08/02 17:31:46 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "tree.h" diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-hash.h b/gnu/usr.bin/gcc2/cc1plus/cp-hash.h index 04d03accb9d..30b5b71a52d 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-hash.h +++ b/gnu/usr.bin/gcc2/cc1plus/cp-hash.h @@ -1,4 +1,7 @@ -/* C code produced by gperf version 2.5 (GNU C++ version) */ +/* C code produced by gperf version 2.5 (GNU C++ version + + $Id: cp-hash.h,v 1.2 1993/08/02 17:31:47 mycroft Exp $ +*/ /* Command-line: gperf -p -j1 -g -o -t -N is_reserved_word -k1,4,$,7 gplus.gperf */ /* Command-line: gperf -p -j1 -g -o -t -N is_reserved_word -k1,4,$,7 gplus.gperf */ struct resword { char *name; short token; enum rid rid;}; diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-init.c b/gnu/usr.bin/gcc2/cc1plus/cp-init.c index 38082e5689a..4fd59c8aa45 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-init.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-init.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-init.c,v 1.2 1993/08/02 17:31:50 mycroft Exp $"; +#endif /* not lint */ /* High-level class interface. */ diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-input.c b/gnu/usr.bin/gcc2/cc1plus/cp-input.c index 1252aed187a..5c71c63ac51 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-input.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-input.c @@ -18,6 +18,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-input.c,v 1.2 1993/08/02 17:31:51 mycroft Exp $"; +#endif /* not lint */ + /* G++ needs to do enough saving and re-parsing of text that it is necessary to abandon the simple FILE* model and use a mechanism where we can pre-empt one input stream with another derived from saved text; diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-lex.c b/gnu/usr.bin/gcc2/cc1plus/cp-lex.c index 81e9047d015..ad6c119af43 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-lex.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-lex.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-lex.c,v 1.2 1993/08/02 17:31:53 mycroft Exp $"; +#endif /* not lint */ /* This file is the lexical analyzer for GNU C++. */ diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-lex.h b/gnu/usr.bin/gcc2/cc1plus/cp-lex.h index 9df38e5ee40..335c44a9e2b 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-lex.h +++ b/gnu/usr.bin/gcc2/cc1plus/cp-lex.h @@ -18,9 +18,10 @@ GNU CC General Public License. A copy of this license is supposed to have been given to you along with GNU CC so you can know your rights and responsibilities. It should be in a file named COPYING. Among other things, the copyright notice -and this notice must be preserved on all copies. */ - +and this notice must be preserved on all copies. + $Id: cp-lex.h,v 1.2 1993/08/02 17:31:55 mycroft Exp $ +*/ enum rid { diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-method.c b/gnu/usr.bin/gcc2/cc1plus/cp-method.c index ab98812ef7d..c06c6714543 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-method.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-method.c @@ -19,6 +19,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-method.c,v 1.2 1993/08/02 17:31:56 mycroft Exp $"; +#endif /* not lint */ #ifndef PARM_CAN_BE_ARRAY_TYPE #define PARM_CAN_BE_ARRAY_TYPE 1 diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-parse.c b/gnu/usr.bin/gcc2/cc1plus/cp-parse.c index 3356f1b2fcf..486fda1c102 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-parse.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-parse.c @@ -1,6 +1,10 @@ /* A Bison parser, made from cp-parse.y */ +#ifndef lint +static char rcsid[] = "$Id: cp-parse.c,v 1.2 1993/08/02 17:32:01 mycroft Exp $"; +#endif /* not lint */ + #define YYBISON 1 /* Identify Bison output. */ #define IDENTIFIER 258 diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-parse.h b/gnu/usr.bin/gcc2/cc1plus/cp-parse.h index 87ea2b8de0f..6e9980393ae 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-parse.h +++ b/gnu/usr.bin/gcc2/cc1plus/cp-parse.h @@ -1,3 +1,5 @@ +/* $Id: cp-parse.h,v 1.2 1993/08/02 17:32:05 mycroft Exp $ */ + typedef union {long itype; tree ttype; char *strtype; enum tree_code code; } YYSTYPE; #define IDENTIFIER 258 #define TYPENAME 259 diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-pt.c b/gnu/usr.bin/gcc2/cc1plus/cp-pt.c index 75e39677eb7..9275bf25bf0 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-pt.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-pt.c @@ -18,6 +18,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-pt.c,v 1.2 1993/08/02 17:32:06 mycroft Exp $"; +#endif /* not lint */ + /* Known bugs or deficiencies include: * templates for class static data don't work (methods only) * duplicated method templates can crash the compiler diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-ptree.c b/gnu/usr.bin/gcc2/cc1plus/cp-ptree.c index a976fac36dd..08f676b50ce 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-ptree.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-ptree.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-ptree.c,v 1.2 1993/08/02 17:32:08 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "tree.h" diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-search.c b/gnu/usr.bin/gcc2/cc1plus/cp-search.c index 9f3e0a5a154..dea916e693c 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-search.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-search.c @@ -19,6 +19,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-search.c,v 1.2 1993/08/02 17:32:11 mycroft Exp $"; +#endif /* not lint */ + #if 0 /* Remove before release, should only appear for development and testing. */ #define CHECK_convert_pointer_to_single_level diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-spew.c b/gnu/usr.bin/gcc2/cc1plus/cp-spew.c index 92f8e618832..a18ee156f36 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-spew.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-spew.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-spew.c,v 1.2 1993/08/02 17:32:13 mycroft Exp $"; +#endif /* not lint */ /* This file is the type analyzer for GNU C++. To debug it, define SPEW_DEBUG when compiling cp-parse.c and cp-spew.c. */ diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-tree.c b/gnu/usr.bin/gcc2/cc1plus/cp-tree.c index 8728d645997..fadac8e2c44 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-tree.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-tree.c @@ -18,6 +18,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-tree.c,v 1.2 1993/08/02 17:32:14 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include <stdio.h> #include "obstack.h" diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-tree.h b/gnu/usr.bin/gcc2/cc1plus/cp-tree.h index fa55b655b2f..b371d34f621 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-tree.h +++ b/gnu/usr.bin/gcc2/cc1plus/cp-tree.h @@ -16,7 +16,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: cp-tree.h,v 1.2 1993/08/02 17:32:16 mycroft Exp $ +*/ #include "cp-class.h" diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-type2.c b/gnu/usr.bin/gcc2/cc1plus/cp-type2.c index eaa009e8411..646e82a8cad 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-type2.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-type2.c @@ -19,6 +19,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-type2.c,v 1.2 1993/08/02 17:32:18 mycroft Exp $"; +#endif /* not lint */ /* This file is part of the C++ front end. It contains routines to build C++ expressions given their operands, diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-typeck.c b/gnu/usr.bin/gcc2/cc1plus/cp-typeck.c index 362e1708099..29530bfb699 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-typeck.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-typeck.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-typeck.c,v 1.2 1993/08/02 17:32:21 mycroft Exp $"; +#endif /* not lint */ /* This file is part of the C++ front end. It contains routines to build C++ expressions given their operands, diff --git a/gnu/usr.bin/gcc2/cc1plus/cp-xref.c b/gnu/usr.bin/gcc2/cc1plus/cp-xref.c index 0d4ce96bfc2..69a2d0bd816 100644 --- a/gnu/usr.bin/gcc2/cc1plus/cp-xref.c +++ b/gnu/usr.bin/gcc2/cc1plus/cp-xref.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cp-xref.c,v 1.2 1993/08/02 17:32:24 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "tree.h" diff --git a/gnu/usr.bin/gcc2/cc1plus/stack.h b/gnu/usr.bin/gcc2/cc1plus/stack.h index c5d9a2512a9..a35b7e633d1 100644 --- a/gnu/usr.bin/gcc2/cc1plus/stack.h +++ b/gnu/usr.bin/gcc2/cc1plus/stack.h @@ -14,7 +14,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: stack.h,v 1.2 1993/08/02 17:32:25 mycroft Exp $ +*/ /* Summary: this file contains additional structures that layer on top of obstacks for GNU C++. */ diff --git a/gnu/usr.bin/gcc2/common/basic-block.h b/gnu/usr.bin/gcc2/common/basic-block.h index fb0d10eed13..e61e1d92086 100644 --- a/gnu/usr.bin/gcc2/common/basic-block.h +++ b/gnu/usr.bin/gcc2/common/basic-block.h @@ -15,8 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + $Id: basic-block.h,v 1.2 1993/08/02 17:33:28 mycroft Exp $ +*/ /* Number of bits in each actual element of a regset. */ diff --git a/gnu/usr.bin/gcc2/common/c-common.c b/gnu/usr.bin/gcc2/common/c-common.c index 7e0691e0079..170e9777e24 100644 --- a/gnu/usr.bin/gcc2/common/c-common.c +++ b/gnu/usr.bin/gcc2/common/c-common.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: c-common.c,v 1.2 1993/08/02 17:33:30 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include "tree.h" #include "c-lex.h" diff --git a/gnu/usr.bin/gcc2/common/c-lex.h b/gnu/usr.bin/gcc2/common/c-lex.h index ae67d4c1112..c8b43362a04 100644 --- a/gnu/usr.bin/gcc2/common/c-lex.h +++ b/gnu/usr.bin/gcc2/common/c-lex.h @@ -15,9 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ - +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + $Id: c-lex.h,v 1.2 1993/08/02 17:33:31 mycroft Exp $ +*/ enum rid { diff --git a/gnu/usr.bin/gcc2/common/c-parse.h b/gnu/usr.bin/gcc2/common/c-parse.h index dab903ee8f1..334d223295d 100644 --- a/gnu/usr.bin/gcc2/common/c-parse.h +++ b/gnu/usr.bin/gcc2/common/c-parse.h @@ -1,3 +1,5 @@ +/* $Id: c-parse.h,v 1.2 1993/08/02 17:33:32 mycroft Exp $ */ + typedef union {long itype; tree ttype; enum tree_code code; char *filename; int lineno; } YYSTYPE; #define IDENTIFIER 258 diff --git a/gnu/usr.bin/gcc2/common/c-tree.h b/gnu/usr.bin/gcc2/common/c-tree.h index 1450b300efb..9eb9deaa9fd 100644 --- a/gnu/usr.bin/gcc2/common/c-tree.h +++ b/gnu/usr.bin/gcc2/common/c-tree.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: c-tree.h,v 1.2 1993/08/02 17:33:33 mycroft Exp $ +*/ #ifndef _C_TREE_H #define _C_TREE_H diff --git a/gnu/usr.bin/gcc2/common/caller-save.c b/gnu/usr.bin/gcc2/common/caller-save.c index ecdc20aa600..de8b17e38cc 100644 --- a/gnu/usr.bin/gcc2/common/caller-save.c +++ b/gnu/usr.bin/gcc2/common/caller-save.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: caller-save.c,v 1.2 1993/08/02 17:33:35 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include "rtl.h" #include "insn-config.h" diff --git a/gnu/usr.bin/gcc2/common/calls.c b/gnu/usr.bin/gcc2/common/calls.c index dc867aec109..8f485217a5f 100644 --- a/gnu/usr.bin/gcc2/common/calls.c +++ b/gnu/usr.bin/gcc2/common/calls.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: calls.c,v 1.2 1993/08/02 17:33:37 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include "rtl.h" #include "tree.h" diff --git a/gnu/usr.bin/gcc2/common/combine.c b/gnu/usr.bin/gcc2/common/combine.c index 7aa534879f5..d53d64d0c6c 100644 --- a/gnu/usr.bin/gcc2/common/combine.c +++ b/gnu/usr.bin/gcc2/common/combine.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: combine.c,v 1.2 1993/08/02 17:33:44 mycroft Exp $"; +#endif /* not lint */ /* This module is essentially the "combiner" phase of the U. of Arizona Portable Optimizer, but redone to work on our list-structured diff --git a/gnu/usr.bin/gcc2/common/conditions.h b/gnu/usr.bin/gcc2/common/conditions.h index e7319377f37..92968223992 100644 --- a/gnu/usr.bin/gcc2/common/conditions.h +++ b/gnu/usr.bin/gcc2/common/conditions.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: conditions.h,v 1.2 1993/08/02 17:33:49 mycroft Exp $ +*/ /* None of the things in the files exist if we don't use CC0. */ diff --git a/gnu/usr.bin/gcc2/common/convert.c b/gnu/usr.bin/gcc2/common/convert.c index d073ac3ee62..a59cdace191 100644 --- a/gnu/usr.bin/gcc2/common/convert.c +++ b/gnu/usr.bin/gcc2/common/convert.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: convert.c,v 1.2 1993/08/02 17:33:50 mycroft Exp $"; +#endif /* not lint */ /* These routines are somewhat language-independent utility function intended to be called by the language-specific convert () functions. */ diff --git a/gnu/usr.bin/gcc2/common/convert.h b/gnu/usr.bin/gcc2/common/convert.h index b2c8c794757..65cd3a2316b 100644 --- a/gnu/usr.bin/gcc2/common/convert.h +++ b/gnu/usr.bin/gcc2/common/convert.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: convert.h,v 1.2 1993/08/02 17:33:51 mycroft Exp $ +*/ extern tree convert_to_integer PROTO ((tree, tree)); extern tree convert_to_pointer PROTO ((tree, tree)); diff --git a/gnu/usr.bin/gcc2/common/cse.c b/gnu/usr.bin/gcc2/common/cse.c index 792fa7b2f5f..b125a264b2a 100644 --- a/gnu/usr.bin/gcc2/common/cse.c +++ b/gnu/usr.bin/gcc2/common/cse.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: cse.c,v 1.2 1993/08/02 17:33:55 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "rtl.h" diff --git a/gnu/usr.bin/gcc2/common/dbxout.c b/gnu/usr.bin/gcc2/common/dbxout.c index 4f3a348c602..a139973d913 100644 --- a/gnu/usr.bin/gcc2/common/dbxout.c +++ b/gnu/usr.bin/gcc2/common/dbxout.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: dbxout.c,v 1.2 1993/08/02 17:33:59 mycroft Exp $"; +#endif /* not lint */ /* Output dbx-format symbol table data. This consists of many symbol table entries, each of them diff --git a/gnu/usr.bin/gcc2/common/defaults.h b/gnu/usr.bin/gcc2/common/defaults.h index 7234206e7d2..da0be5cfb03 100644 --- a/gnu/usr.bin/gcc2/common/defaults.h +++ b/gnu/usr.bin/gcc2/common/defaults.h @@ -20,7 +20,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: defaults.h,v 1.2 1993/08/02 17:34:01 mycroft Exp $ +*/ /* Store in OUTPUT a string (made with alloca) containing an assembler-name for a local static variable or function named NAME. diff --git a/gnu/usr.bin/gcc2/common/dwarfout.c b/gnu/usr.bin/gcc2/common/dwarfout.c index cd2dca50a75..dc5c3a828c8 100644 --- a/gnu/usr.bin/gcc2/common/dwarfout.c +++ b/gnu/usr.bin/gcc2/common/dwarfout.c @@ -20,6 +20,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: dwarfout.c,v 1.2 1993/08/02 17:34:05 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #ifdef DWARF_DEBUGGING_INFO diff --git a/gnu/usr.bin/gcc2/common/emit-rtl.c b/gnu/usr.bin/gcc2/common/emit-rtl.c index b63f0c8b479..7b7a3622b26 100644 --- a/gnu/usr.bin/gcc2/common/emit-rtl.c +++ b/gnu/usr.bin/gcc2/common/emit-rtl.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: emit-rtl.c,v 1.2 1993/08/02 17:34:08 mycroft Exp $"; +#endif /* not lint */ /* Middle-to-low level generation of rtx code and insns. diff --git a/gnu/usr.bin/gcc2/common/explow.c b/gnu/usr.bin/gcc2/common/explow.c index f13129fa034..841f7d54a69 100644 --- a/gnu/usr.bin/gcc2/common/explow.c +++ b/gnu/usr.bin/gcc2/common/explow.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: explow.c,v 1.2 1993/08/02 17:34:10 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "rtl.h" diff --git a/gnu/usr.bin/gcc2/common/expmed.c b/gnu/usr.bin/gcc2/common/expmed.c index 727f888a510..33f4c6ca950 100644 --- a/gnu/usr.bin/gcc2/common/expmed.c +++ b/gnu/usr.bin/gcc2/common/expmed.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: expmed.c,v 1.2 1993/08/02 17:34:12 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "rtl.h" diff --git a/gnu/usr.bin/gcc2/common/expr.c b/gnu/usr.bin/gcc2/common/expr.c index d866d3c98ef..77f6b10ec01 100644 --- a/gnu/usr.bin/gcc2/common/expr.c +++ b/gnu/usr.bin/gcc2/common/expr.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: expr.c,v 1.2 1993/08/02 17:34:18 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "rtl.h" diff --git a/gnu/usr.bin/gcc2/common/expr.h b/gnu/usr.bin/gcc2/common/expr.h index 972c62cbf6b..c50fbd9095d 100644 --- a/gnu/usr.bin/gcc2/common/expr.h +++ b/gnu/usr.bin/gcc2/common/expr.h @@ -15,8 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + $Id: expr.h,v 1.2 1993/08/02 17:34:21 mycroft Exp $ +*/ #ifndef __STDC__ #ifndef const diff --git a/gnu/usr.bin/gcc2/common/final.c b/gnu/usr.bin/gcc2/common/final.c index 9773fa8e287..3b9b4cef225 100644 --- a/gnu/usr.bin/gcc2/common/final.c +++ b/gnu/usr.bin/gcc2/common/final.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: final.c,v 1.2 1993/08/02 17:34:23 mycroft Exp $"; +#endif /* not lint */ /* This is the final pass of the compiler. It looks at the rtl code for a function and outputs assembler code. diff --git a/gnu/usr.bin/gcc2/common/flags.h b/gnu/usr.bin/gcc2/common/flags.h index 22bd1f04f81..b38c225ca32 100644 --- a/gnu/usr.bin/gcc2/common/flags.h +++ b/gnu/usr.bin/gcc2/common/flags.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: flags.h,v 1.2 1993/08/02 17:34:25 mycroft Exp $ +*/ /* Name of the input .c file being compiled. */ extern char *main_input_filename; diff --git a/gnu/usr.bin/gcc2/common/flow.c b/gnu/usr.bin/gcc2/common/flow.c index a5cc47612b0..247e304fb9b 100644 --- a/gnu/usr.bin/gcc2/common/flow.c +++ b/gnu/usr.bin/gcc2/common/flow.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: flow.c,v 1.2 1993/08/02 17:34:27 mycroft Exp $"; +#endif /* not lint */ /* This file contains the data flow analysis pass of the compiler. It computes data flow information diff --git a/gnu/usr.bin/gcc2/common/fold-const.c b/gnu/usr.bin/gcc2/common/fold-const.c index 6570ac2a62d..bcb01dabb1c 100644 --- a/gnu/usr.bin/gcc2/common/fold-const.c +++ b/gnu/usr.bin/gcc2/common/fold-const.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: fold-const.c,v 1.2 1993/08/02 17:34:30 mycroft Exp $"; +#endif /* not lint */ + /*@@ Fix lossage on folding division of big integers. */ /*@@ This file should be rewritten to use an arbitrary precision diff --git a/gnu/usr.bin/gcc2/common/function.c b/gnu/usr.bin/gcc2/common/function.c index f9d851713f4..60588fff79a 100644 --- a/gnu/usr.bin/gcc2/common/function.c +++ b/gnu/usr.bin/gcc2/common/function.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: function.c,v 1.2 1993/08/02 17:34:34 mycroft Exp $"; +#endif /* not lint */ /* This file handles the generation of rtl code from tree structure at the level of the function as a whole. diff --git a/gnu/usr.bin/gcc2/common/function.h b/gnu/usr.bin/gcc2/common/function.h index 209e44a93f9..5265122f445 100644 --- a/gnu/usr.bin/gcc2/common/function.h +++ b/gnu/usr.bin/gcc2/common/function.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: function.h,v 1.2 1993/08/02 17:34:37 mycroft Exp $ +*/ #ifndef NULL_TREE diff --git a/gnu/usr.bin/gcc2/common/gbl-ctors.h b/gnu/usr.bin/gcc2/common/gbl-ctors.h index 13048cefe45..630c7aa23e2 100644 --- a/gnu/usr.bin/gcc2/common/gbl-ctors.h +++ b/gnu/usr.bin/gcc2/common/gbl-ctors.h @@ -21,7 +21,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: gbl-ctors.h,v 1.2 1993/08/02 17:34:38 mycroft Exp $ +*/ /* This file contains definitions and declarations of things relating to the normal start-up-time invocation of C++ diff --git a/gnu/usr.bin/gcc2/common/getpwd.c b/gnu/usr.bin/gcc2/common/getpwd.c index 922a9edb112..cbed5b6e473 100644 --- a/gnu/usr.bin/gcc2/common/getpwd.c +++ b/gnu/usr.bin/gcc2/common/getpwd.c @@ -1,5 +1,9 @@ /* getpwd.c - get the working directory */ +#ifndef lint +static char rcsid[] = "$Id: getpwd.c,v 1.2 1993/08/02 17:34:39 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include <errno.h> diff --git a/gnu/usr.bin/gcc2/common/glimits.h b/gnu/usr.bin/gcc2/common/glimits.h index 9b4df3d73d8..8efe925d988 100644 --- a/gnu/usr.bin/gcc2/common/glimits.h +++ b/gnu/usr.bin/gcc2/common/glimits.h @@ -1,3 +1,5 @@ +/* $Id: glimits.h,v 1.2 1993/08/02 17:34:40 mycroft Exp $ */ + #ifndef _LIMITS_H___ #ifndef _MACH_MACHLIMITS_H_ diff --git a/gnu/usr.bin/gcc2/common/global.c b/gnu/usr.bin/gcc2/common/global.c index 967526e3c30..634c204964b 100644 --- a/gnu/usr.bin/gcc2/common/global.c +++ b/gnu/usr.bin/gcc2/common/global.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: global.c,v 1.2 1993/08/02 17:34:41 mycroft Exp $"; +#endif /* not lint */ #include <stdio.h> #include "config.h" diff --git a/gnu/usr.bin/gcc2/common/gstddef.h b/gnu/usr.bin/gcc2/common/gstddef.h index 5ad0ef22719..48a6930055a 100644 --- a/gnu/usr.bin/gcc2/common/gstddef.h +++ b/gnu/usr.bin/gcc2/common/gstddef.h @@ -1,3 +1,5 @@ +/* $Id: gstddef.h,v 1.2 1993/08/02 17:34:43 mycroft Exp $ */ + #ifndef _STDDEF_H #ifndef _STDDEF_H_ #ifndef _ANSI_STDDEF_H diff --git a/gnu/usr.bin/gcc2/common/gvarargs.h b/gnu/usr.bin/gcc2/common/gvarargs.h index d0ebba2bb44..815e48b5f9c 100644 --- a/gnu/usr.bin/gcc2/common/gvarargs.h +++ b/gnu/usr.bin/gcc2/common/gvarargs.h @@ -1,3 +1,5 @@ +/* $Id: gvarargs.h,v 1.2 1993/08/02 17:34:44 mycroft Exp $ */ + #ifndef __GNUC__ /* Use the system's macros with the system's compiler. */ #include <varargs.h> diff --git a/gnu/usr.bin/gcc2/common/hard-reg-set.h b/gnu/usr.bin/gcc2/common/hard-reg-set.h index 1c3342a1c11..1057ef05695 100644 --- a/gnu/usr.bin/gcc2/common/hard-reg-set.h +++ b/gnu/usr.bin/gcc2/common/hard-reg-set.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: hard-reg-set.h,v 1.2 1993/08/02 17:34:45 mycroft Exp $ +*/ /* Define the type of a set of hard registers. */ diff --git a/gnu/usr.bin/gcc2/common/i386/perform.h b/gnu/usr.bin/gcc2/common/i386/perform.h index c1a417071ca..859a9d24e97 100644 --- a/gnu/usr.bin/gcc2/common/i386/perform.h +++ b/gnu/usr.bin/gcc2/common/i386/perform.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: perform.h,v 1.2 1993/08/02 17:32:42 mycroft Exp $ +*/ /* Defines to be able to build libgcc.a with GCC. */ diff --git a/gnu/usr.bin/gcc2/common/i386/unix.h b/gnu/usr.bin/gcc2/common/i386/unix.h index 7209176d191..ecc2872b2e4 100644 --- a/gnu/usr.bin/gcc2/common/i386/unix.h +++ b/gnu/usr.bin/gcc2/common/i386/unix.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: unix.h,v 1.2 1993/08/02 17:32:43 mycroft Exp $ +*/ /* This file defines the aspects of assembler syntax that are the same for all the i386 Unix systems diff --git a/gnu/usr.bin/gcc2/common/input.h b/gnu/usr.bin/gcc2/common/input.h index 39590e2eb5e..0bbfb3ef132 100644 --- a/gnu/usr.bin/gcc2/common/input.h +++ b/gnu/usr.bin/gcc2/common/input.h @@ -17,7 +17,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: input.h,v 1.2 1993/08/02 17:34:46 mycroft Exp $ +*/ /* Source file current line is coming from. */ extern char *input_filename; diff --git a/gnu/usr.bin/gcc2/common/integrate.c b/gnu/usr.bin/gcc2/common/integrate.c index 73d839baff6..23b2b7361da 100644 --- a/gnu/usr.bin/gcc2/common/integrate.c +++ b/gnu/usr.bin/gcc2/common/integrate.c @@ -18,6 +18,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: integrate.c,v 1.2 1993/08/02 17:34:49 mycroft Exp $"; +#endif /* not lint */ #include <stdio.h> diff --git a/gnu/usr.bin/gcc2/common/integrate.h b/gnu/usr.bin/gcc2/common/integrate.h index 5e776dd3a90..831f4b6eb35 100644 --- a/gnu/usr.bin/gcc2/common/integrate.h +++ b/gnu/usr.bin/gcc2/common/integrate.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: integrate.h,v 1.2 1993/08/02 17:34:52 mycroft Exp $ +*/ /* This structure is used to remap objects in the function being inlined to those belonging to the calling function. It is passed by diff --git a/gnu/usr.bin/gcc2/common/jump.c b/gnu/usr.bin/gcc2/common/jump.c index c5da32a4aa7..dcea3f05a01 100644 --- a/gnu/usr.bin/gcc2/common/jump.c +++ b/gnu/usr.bin/gcc2/common/jump.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: jump.c,v 1.2 1993/08/02 17:34:56 mycroft Exp $"; +#endif /* not lint */ /* This is the jump-optimization pass of the compiler. It is run two or three times: once before cse, sometimes once after cse, diff --git a/gnu/usr.bin/gcc2/common/local-alloc.c b/gnu/usr.bin/gcc2/common/local-alloc.c index 6af09342524..295502dbd40 100644 --- a/gnu/usr.bin/gcc2/common/local-alloc.c +++ b/gnu/usr.bin/gcc2/common/local-alloc.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: local-alloc.c,v 1.2 1993/08/02 17:34:59 mycroft Exp $"; +#endif /* not lint */ /* Allocation of hard register numbers to pseudo registers is done in two passes. In this pass we consider only regs that are born and diff --git a/gnu/usr.bin/gcc2/common/longlong.h b/gnu/usr.bin/gcc2/common/longlong.h index c594a1feb56..395abc3de61 100644 --- a/gnu/usr.bin/gcc2/common/longlong.h +++ b/gnu/usr.bin/gcc2/common/longlong.h @@ -13,7 +13,10 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: longlong.h,v 1.2 1993/08/02 17:35:01 mycroft Exp $ +*/ #ifndef SI_TYPE_SIZE #define SI_TYPE_SIZE 32 diff --git a/gnu/usr.bin/gcc2/common/loop.c b/gnu/usr.bin/gcc2/common/loop.c index ad82384c148..0bf7ed04c1f 100644 --- a/gnu/usr.bin/gcc2/common/loop.c +++ b/gnu/usr.bin/gcc2/common/loop.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: loop.c,v 1.2 1993/08/02 17:35:05 mycroft Exp $"; +#endif /* not lint */ /* This is the loop optimization pass of the compiler. It finds invariant computations within loops and moves them diff --git a/gnu/usr.bin/gcc2/common/loop.h b/gnu/usr.bin/gcc2/common/loop.h index bb219c32d21..60c20535dfb 100644 --- a/gnu/usr.bin/gcc2/common/loop.h +++ b/gnu/usr.bin/gcc2/common/loop.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: loop.h,v 1.2 1993/08/02 17:35:07 mycroft Exp $ +*/ /* 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. */ diff --git a/gnu/usr.bin/gcc2/common/machmode.h b/gnu/usr.bin/gcc2/common/machmode.h index 240bd5725f3..fbc2fe89eeb 100644 --- a/gnu/usr.bin/gcc2/common/machmode.h +++ b/gnu/usr.bin/gcc2/common/machmode.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: machmode.h,v 1.2 1993/08/02 17:35:09 mycroft Exp $ +*/ /* Add prototype support. */ diff --git a/gnu/usr.bin/gcc2/common/obstack.c b/gnu/usr.bin/gcc2/common/obstack.c index 7b9d3b9046d..ad9b6952786 100644 --- a/gnu/usr.bin/gcc2/common/obstack.c +++ b/gnu/usr.bin/gcc2/common/obstack.c @@ -15,6 +15,10 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: obstack.c,v 1.2 1993/08/02 17:35:10 mycroft Exp $"; +#endif /* not lint */ + #include "obstack.h" /* This is just to get __GNU_LIBRARY__ defined. */ diff --git a/gnu/usr.bin/gcc2/common/obstack.h b/gnu/usr.bin/gcc2/common/obstack.h index d4335cf46ac..a8cf32a794e 100644 --- a/gnu/usr.bin/gcc2/common/obstack.h +++ b/gnu/usr.bin/gcc2/common/obstack.h @@ -13,7 +13,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software -Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: obstack.h,v 1.2 1993/08/02 17:35:12 mycroft Exp $ +*/ /* Summary: diff --git a/gnu/usr.bin/gcc2/common/optabs.c b/gnu/usr.bin/gcc2/common/optabs.c index 9f37c5233a4..fbfb40df5ab 100644 --- a/gnu/usr.bin/gcc2/common/optabs.c +++ b/gnu/usr.bin/gcc2/common/optabs.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: optabs.c,v 1.2 1993/08/02 17:35:16 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "rtl.h" diff --git a/gnu/usr.bin/gcc2/common/output.h b/gnu/usr.bin/gcc2/common/output.h index 7e5d03e74b0..1aa8debcae1 100644 --- a/gnu/usr.bin/gcc2/common/output.h +++ b/gnu/usr.bin/gcc2/common/output.h @@ -16,7 +16,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: output.h,v 1.2 1993/08/02 17:35:20 mycroft Exp $ +*/ #ifndef STDIO_PROTO #ifdef BUFSIZ diff --git a/gnu/usr.bin/gcc2/common/print-rtl.c b/gnu/usr.bin/gcc2/common/print-rtl.c index 651659eb924..5c024b54aca 100644 --- a/gnu/usr.bin/gcc2/common/print-rtl.c +++ b/gnu/usr.bin/gcc2/common/print-rtl.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: print-rtl.c,v 1.2 1993/08/02 17:35:21 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include <ctype.h> diff --git a/gnu/usr.bin/gcc2/common/print-tree.c b/gnu/usr.bin/gcc2/common/print-tree.c index f1c5b2100a9..244518025e5 100644 --- a/gnu/usr.bin/gcc2/common/print-tree.c +++ b/gnu/usr.bin/gcc2/common/print-tree.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: print-tree.c,v 1.2 1993/08/02 17:35:22 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "tree.h" diff --git a/gnu/usr.bin/gcc2/common/real.c b/gnu/usr.bin/gcc2/common/real.c index 1e4a4fae5c8..7827e03699b 100644 --- a/gnu/usr.bin/gcc2/common/real.c +++ b/gnu/usr.bin/gcc2/common/real.c @@ -20,6 +20,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: real.c,v 1.2 1993/08/02 17:35:25 mycroft Exp $"; +#endif /* not lint */ + #include <stdio.h> #include <errno.h> #include "config.h" diff --git a/gnu/usr.bin/gcc2/common/real.h b/gnu/usr.bin/gcc2/common/real.h index 4ac1822899e..6a79dec09cc 100644 --- a/gnu/usr.bin/gcc2/common/real.h +++ b/gnu/usr.bin/gcc2/common/real.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: real.h,v 1.2 1993/08/02 17:35:26 mycroft Exp $ +*/ #ifndef REAL_H_INCLUDED #define REAL_H_INCLUDED diff --git a/gnu/usr.bin/gcc2/common/recog.c b/gnu/usr.bin/gcc2/common/recog.c index 2232db29a1e..15c645f4087 100644 --- a/gnu/usr.bin/gcc2/common/recog.c +++ b/gnu/usr.bin/gcc2/common/recog.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: recog.c,v 1.2 1993/08/02 17:35:28 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "rtl.h" diff --git a/gnu/usr.bin/gcc2/common/recog.h b/gnu/usr.bin/gcc2/common/recog.h index 8fc2efb4772..e1cd184b569 100644 --- a/gnu/usr.bin/gcc2/common/recog.h +++ b/gnu/usr.bin/gcc2/common/recog.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: recog.h,v 1.2 1993/08/02 17:35:29 mycroft Exp $ +*/ /* Add prototype support. */ #ifndef PROTO diff --git a/gnu/usr.bin/gcc2/common/reg-stack.c b/gnu/usr.bin/gcc2/common/reg-stack.c index 33bd2689d76..d5ee8d6fd61 100644 --- a/gnu/usr.bin/gcc2/common/reg-stack.c +++ b/gnu/usr.bin/gcc2/common/reg-stack.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: reg-stack.c,v 1.2 1993/08/02 17:35:31 mycroft Exp $"; +#endif /* not lint */ + /* This pass converts stack-like registers from the "flat register file" model that gcc uses, to a stack convention that the 387 uses. diff --git a/gnu/usr.bin/gcc2/common/regclass.c b/gnu/usr.bin/gcc2/common/regclass.c index 19603559724..ae184d4008c 100644 --- a/gnu/usr.bin/gcc2/common/regclass.c +++ b/gnu/usr.bin/gcc2/common/regclass.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: regclass.c,v 1.2 1993/08/02 17:35:33 mycroft Exp $"; +#endif /* not lint */ /* This file contains two passes of the compiler: reg_scan and reg_class. It also defines some tables of information about the hardware registers diff --git a/gnu/usr.bin/gcc2/common/regs.h b/gnu/usr.bin/gcc2/common/regs.h index 31158e728f3..21e0d09b30a 100644 --- a/gnu/usr.bin/gcc2/common/regs.h +++ b/gnu/usr.bin/gcc2/common/regs.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: regs.h,v 1.2 1993/08/02 17:35:34 mycroft Exp $ +*/ diff --git a/gnu/usr.bin/gcc2/common/reload.c b/gnu/usr.bin/gcc2/common/reload.c index 868c96780fc..c1e26525594 100644 --- a/gnu/usr.bin/gcc2/common/reload.c +++ b/gnu/usr.bin/gcc2/common/reload.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: reload.c,v 1.2 1993/08/02 17:35:38 mycroft Exp $"; +#endif /* not lint */ /* This file contains subroutines used only from the file reload1.c. It knows how to scan one insn for operands and values diff --git a/gnu/usr.bin/gcc2/common/reload.h b/gnu/usr.bin/gcc2/common/reload.h index 93de26a0dc9..971a4068264 100644 --- a/gnu/usr.bin/gcc2/common/reload.h +++ b/gnu/usr.bin/gcc2/common/reload.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: reload.h,v 1.2 1993/08/02 17:35:43 mycroft Exp $ +*/ /* Add prototype support. */ diff --git a/gnu/usr.bin/gcc2/common/reload1.c b/gnu/usr.bin/gcc2/common/reload1.c index 87076c8a011..2e2eff19a5b 100644 --- a/gnu/usr.bin/gcc2/common/reload1.c +++ b/gnu/usr.bin/gcc2/common/reload1.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: reload1.c,v 1.2 1993/08/02 17:35:49 mycroft Exp $"; +#endif /* not lint */ #include <stdio.h> #include "config.h" diff --git a/gnu/usr.bin/gcc2/common/reorg.c b/gnu/usr.bin/gcc2/common/reorg.c index 3b6b20585d3..a4bd1164d26 100644 --- a/gnu/usr.bin/gcc2/common/reorg.c +++ b/gnu/usr.bin/gcc2/common/reorg.c @@ -19,6 +19,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: reorg.c,v 1.2 1993/08/02 17:35:54 mycroft Exp $"; +#endif /* not lint */ + /* Instruction reorganization pass. This pass runs after register allocation and final jump diff --git a/gnu/usr.bin/gcc2/common/rtl.c b/gnu/usr.bin/gcc2/common/rtl.c index ac1979fc51d..b8f20db4b7d 100644 --- a/gnu/usr.bin/gcc2/common/rtl.c +++ b/gnu/usr.bin/gcc2/common/rtl.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: rtl.c,v 1.2 1993/08/02 17:35:56 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include <ctype.h> diff --git a/gnu/usr.bin/gcc2/common/rtl.h b/gnu/usr.bin/gcc2/common/rtl.h index 72eac9cf880..9d1b6b38ba1 100644 --- a/gnu/usr.bin/gcc2/common/rtl.h +++ b/gnu/usr.bin/gcc2/common/rtl.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: rtl.h,v 1.2 1993/08/02 17:35:58 mycroft Exp $ +*/ #include "machmode.h" diff --git a/gnu/usr.bin/gcc2/common/rtlanal.c b/gnu/usr.bin/gcc2/common/rtlanal.c index 549f9054f6e..ac2385c33a5 100644 --- a/gnu/usr.bin/gcc2/common/rtlanal.c +++ b/gnu/usr.bin/gcc2/common/rtlanal.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: rtlanal.c,v 1.2 1993/08/02 17:35:59 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include "rtl.h" diff --git a/gnu/usr.bin/gcc2/common/sched.c b/gnu/usr.bin/gcc2/common/sched.c index 2fec9bcf9bb..e75d0b0bdc1 100644 --- a/gnu/usr.bin/gcc2/common/sched.c +++ b/gnu/usr.bin/gcc2/common/sched.c @@ -19,6 +19,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: sched.c,v 1.2 1993/08/02 17:36:02 mycroft Exp $"; +#endif /* not lint */ + /* Instruction scheduling pass. This pass implements list scheduling within basic blocks. It is diff --git a/gnu/usr.bin/gcc2/common/sdbout.c b/gnu/usr.bin/gcc2/common/sdbout.c index a08230dc94a..a15e4d99003 100644 --- a/gnu/usr.bin/gcc2/common/sdbout.c +++ b/gnu/usr.bin/gcc2/common/sdbout.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: sdbout.c,v 1.2 1993/08/02 17:36:05 mycroft Exp $"; +#endif /* not lint */ + /* mike@tredysvr.Tredydev.Unisys.COM says: I modified the struct.c example and have a nm of a .o resulting from the AT&T C compiler. From the example below I would conclude the following: diff --git a/gnu/usr.bin/gcc2/common/stmt.c b/gnu/usr.bin/gcc2/common/stmt.c index 5647d26ce94..20f0c08ebef 100644 --- a/gnu/usr.bin/gcc2/common/stmt.c +++ b/gnu/usr.bin/gcc2/common/stmt.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: stmt.c,v 1.2 1993/08/02 17:36:07 mycroft Exp $"; +#endif /* not lint */ /* This file handles the generation of rtl code from tree structure above the level of expressions, using subroutines in exp*.c and emit-rtl.c. diff --git a/gnu/usr.bin/gcc2/common/stor-layout.c b/gnu/usr.bin/gcc2/common/stor-layout.c index c0efe3dab89..679e5a8392c 100644 --- a/gnu/usr.bin/gcc2/common/stor-layout.c +++ b/gnu/usr.bin/gcc2/common/stor-layout.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: stor-layout.c,v 1.2 1993/08/02 17:36:10 mycroft Exp $"; +#endif /* not lint */ #include "config.h" #include <stdio.h> diff --git a/gnu/usr.bin/gcc2/common/stupid.c b/gnu/usr.bin/gcc2/common/stupid.c index 47d7740fb64..00f27f4defa 100644 --- a/gnu/usr.bin/gcc2/common/stupid.c +++ b/gnu/usr.bin/gcc2/common/stupid.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: stupid.c,v 1.2 1993/08/02 17:36:11 mycroft Exp $"; +#endif /* not lint */ /* This file performs stupid register allocation, which is used when cc1 gets the -noreg switch (which is when cc does not get -O). diff --git a/gnu/usr.bin/gcc2/common/toplev.c b/gnu/usr.bin/gcc2/common/toplev.c index 1e33806ee63..d7a1059510f 100644 --- a/gnu/usr.bin/gcc2/common/toplev.c +++ b/gnu/usr.bin/gcc2/common/toplev.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: toplev.c,v 1.2 1993/08/02 17:36:13 mycroft Exp $"; +#endif /* not lint */ /* This is the top level of cc1/c++. It parses command args, opens files, invokes the various passes diff --git a/gnu/usr.bin/gcc2/common/tree.c b/gnu/usr.bin/gcc2/common/tree.c index 96a399f92d1..af043f0d260 100644 --- a/gnu/usr.bin/gcc2/common/tree.c +++ b/gnu/usr.bin/gcc2/common/tree.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: tree.c,v 1.2 1993/08/02 17:36:16 mycroft Exp $"; +#endif /* not lint */ /* This file contains the low level primitives for operating on tree nodes, including allocation, list operations, interning of identifiers, diff --git a/gnu/usr.bin/gcc2/common/tree.h b/gnu/usr.bin/gcc2/common/tree.h index 556dac0ecfb..8e1b8640bd7 100644 --- a/gnu/usr.bin/gcc2/common/tree.h +++ b/gnu/usr.bin/gcc2/common/tree.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: tree.h,v 1.2 1993/08/02 17:36:18 mycroft Exp $ +*/ #include "machmode.h" diff --git a/gnu/usr.bin/gcc2/common/typeclass.h b/gnu/usr.bin/gcc2/common/typeclass.h index b1660425361..558c6d7d666 100644 --- a/gnu/usr.bin/gcc2/common/typeclass.h +++ b/gnu/usr.bin/gcc2/common/typeclass.h @@ -1,4 +1,7 @@ -/* Values returned by __builtin_classify_type. */ +/* Values returned by __builtin_classify_type. + + $Id: typeclass.h,v 1.2 1993/08/02 17:36:19 mycroft Exp $ +*/ enum type_class { diff --git a/gnu/usr.bin/gcc2/common/unroll.c b/gnu/usr.bin/gcc2/common/unroll.c index fc8a3f69f19..b5b39ed0aca 100644 --- a/gnu/usr.bin/gcc2/common/unroll.c +++ b/gnu/usr.bin/gcc2/common/unroll.c @@ -18,6 +18,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: unroll.c,v 1.2 1993/08/02 17:36:21 mycroft Exp $"; +#endif /* not lint */ + /* Try to unroll a loop, and split induction variables. Loops for which the number of iterations can be calculated exactly are diff --git a/gnu/usr.bin/gcc2/common/varasm.c b/gnu/usr.bin/gcc2/common/varasm.c index 67954442233..bb9336e6384 100644 --- a/gnu/usr.bin/gcc2/common/varasm.c +++ b/gnu/usr.bin/gcc2/common/varasm.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: varasm.c,v 1.2 1993/08/02 17:36:24 mycroft Exp $"; +#endif /* not lint */ /* This file handles generation of all the assembler code *except* the instructions of a function. diff --git a/gnu/usr.bin/gcc2/common/xcoffout.c b/gnu/usr.bin/gcc2/common/xcoffout.c index 568d443a9e8..76f63b3d77c 100644 --- a/gnu/usr.bin/gcc2/common/xcoffout.c +++ b/gnu/usr.bin/gcc2/common/xcoffout.c @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: xcoffout.c,v 1.2 1993/08/02 17:36:25 mycroft Exp $"; +#endif /* not lint */ /* Output xcoff-format symbol table data. The main functionality is contained in dbxout.c. This file implements the sdbout-like parts of the xcoff diff --git a/gnu/usr.bin/gcc2/cpp/cccp.c b/gnu/usr.bin/gcc2/cpp/cccp.c index 86ba2cfaa70..5cf29f2b690 100644 --- a/gnu/usr.bin/gcc2/cpp/cccp.c +++ b/gnu/usr.bin/gcc2/cpp/cccp.c @@ -20,6 +20,10 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. In other words, you are welcome to use, share and improve this program. You are forbidden to forbid anyone else to use, share and improve what you give them. Help stamp out software-hoarding! */ + +#ifndef lint +static char rcsid[] = "$Id: cccp.c,v 1.2 1993/08/02 17:36:33 mycroft Exp $"; +#endif /* not lint */ typedef unsigned char U_CHAR; diff --git a/gnu/usr.bin/gcc2/cpp/cpp.1 b/gnu/usr.bin/gcc2/cpp/cpp.1 index 8559fc6f8c8..a2d0b32ba9f 100644 --- a/gnu/usr.bin/gcc2/cpp/cpp.1 +++ b/gnu/usr.bin/gcc2/cpp/cpp.1 @@ -1,5 +1,8 @@ -.\" Copyright (c) 1991, 1992, 1993 Free Software Foundation \-*-Text-*- +.\" Copyright (c) 1991, 1992, 1993 Free Software Foundation -*- nroff -*- .\" See section COPYING for conditions for redistribution +.\" +.\" $Id: cpp.1,v 1.2 1993/08/02 17:36:37 mycroft Exp $ +.\" .TH cpp 1 "30apr1993" "GNU Tools" "GNU Tools" .SH NAME cccp, cpp \- The GNU C-Compatible Compiler Preprocessor. diff --git a/gnu/usr.bin/gcc2/cpp/pcp.h b/gnu/usr.bin/gcc2/cpp/pcp.h index 0b86a87af9b..31c375c6bd5 100644 --- a/gnu/usr.bin/gcc2/cpp/pcp.h +++ b/gnu/usr.bin/gcc2/cpp/pcp.h @@ -15,8 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + $Id: pcp.h,v 1.2 1993/08/02 17:36:38 mycroft Exp $ +*/ /* Structure allocated for every string in a precompiled file */ diff --git a/gnu/usr.bin/gcc2/i386/aux-output.c b/gnu/usr.bin/gcc2/i386/aux-output.c index d0b11961b7b..574931edc32 100644 --- a/gnu/usr.bin/gcc2/i386/aux-output.c +++ b/gnu/usr.bin/gcc2/i386/aux-output.c @@ -17,6 +17,10 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef lint +static char rcsid[] = "$Id: aux-output.c,v 1.2 1993/08/02 17:36:49 mycroft Exp $"; +#endif /* not lint */ + #include <stdio.h> #include <setjmp.h> #include "config.h" diff --git a/gnu/usr.bin/gcc2/i386/bsd.h b/gnu/usr.bin/gcc2/i386/bsd.h index ad7a04448fa..3553299878c 100644 --- a/gnu/usr.bin/gcc2/i386/bsd.h +++ b/gnu/usr.bin/gcc2/i386/bsd.h @@ -17,7 +17,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: bsd.h,v 1.2 1993/08/02 17:36:51 mycroft Exp $ +*/ /* Include common aspects of all 386 Unix assemblers. */ #include "i386/unix.h" diff --git a/gnu/usr.bin/gcc2/i386/config.h b/gnu/usr.bin/gcc2/i386/config.h index eb90681006f..b5d893fbb6b 100644 --- a/gnu/usr.bin/gcc2/i386/config.h +++ b/gnu/usr.bin/gcc2/i386/config.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: config.h,v 1.2 1993/08/02 17:36:52 mycroft Exp $ +*/ #ifndef i386 #define i386 diff --git a/gnu/usr.bin/gcc2/i386/gas.h b/gnu/usr.bin/gcc2/i386/gas.h index 4821a895c5d..21467dc4ae2 100644 --- a/gnu/usr.bin/gcc2/i386/gas.h +++ b/gnu/usr.bin/gcc2/i386/gas.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: gas.h,v 1.2 1993/08/02 17:36:52 mycroft Exp $ +*/ /* Note that i386/seq-gas.h is a GAS configuration that does not use this file. */ diff --git a/gnu/usr.bin/gcc2/i386/gstabs.h b/gnu/usr.bin/gcc2/i386/gstabs.h index 5f0ae348f15..a4d2ed210b0 100644 --- a/gnu/usr.bin/gcc2/i386/gstabs.h +++ b/gnu/usr.bin/gcc2/i386/gstabs.h @@ -1,3 +1,5 @@ +/* $Id: gstabs.h,v 1.2 1993/08/02 17:36:53 mycroft Exp $ */ + #include "i386/gas.h" /* We do not want to output SDB debugging information. */ diff --git a/gnu/usr.bin/gcc2/i386/i386.h b/gnu/usr.bin/gcc2/i386/i386.h index fa8f0b5b26b..5520c10b222 100644 --- a/gnu/usr.bin/gcc2/i386/i386.h +++ b/gnu/usr.bin/gcc2/i386/i386.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: i386.h,v 1.2 1993/08/02 17:36:54 mycroft Exp $ +*/ /* The purpose of this file is to define the characteristics of the i386, diff --git a/gnu/usr.bin/gcc2/i386/insn-attr.h b/gnu/usr.bin/gcc2/i386/insn-attr.h index 5fe9a2f8001..845aaa06868 100644 --- a/gnu/usr.bin/gcc2/i386/insn-attr.h +++ b/gnu/usr.bin/gcc2/i386/insn-attr.h @@ -1,5 +1,8 @@ /* Generated automatically by the program `genattr' -from the machine description file `md'. */ +from the machine description file `md'. + + $Id: insn-attr.h,v 1.2 1993/08/02 17:36:56 mycroft Exp $ +*/ #ifndef PROTO #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__) diff --git a/gnu/usr.bin/gcc2/i386/insn-attrtab.c b/gnu/usr.bin/gcc2/i386/insn-attrtab.c index 0e86d1f4c35..3150adf15e1 100644 --- a/gnu/usr.bin/gcc2/i386/insn-attrtab.c +++ b/gnu/usr.bin/gcc2/i386/insn-attrtab.c @@ -1,6 +1,10 @@ /* Generated automatically by the program `genattrtab' from the machine description file `md'. */ +#ifndef lint +static char rcsid[] = "$Id: insn-attrtab.c,v 1.2 1993/08/02 17:36:57 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include "rtl.h" #include "insn-config.h" diff --git a/gnu/usr.bin/gcc2/i386/insn-codes.h b/gnu/usr.bin/gcc2/i386/insn-codes.h index 59b4e98d519..7302b83f5bb 100644 --- a/gnu/usr.bin/gcc2/i386/insn-codes.h +++ b/gnu/usr.bin/gcc2/i386/insn-codes.h @@ -1,5 +1,8 @@ /* Generated automatically by the program `gencodes' -from the machine description file `md'. */ +from the machine description file `md'. + + $Id: insn-codes.h,v 1.2 1993/08/02 17:36:57 mycroft Exp $ +*/ #ifndef MAX_INSN_CODE diff --git a/gnu/usr.bin/gcc2/i386/insn-config.h b/gnu/usr.bin/gcc2/i386/insn-config.h index 7dba8866f62..4fd48c09ab8 100644 --- a/gnu/usr.bin/gcc2/i386/insn-config.h +++ b/gnu/usr.bin/gcc2/i386/insn-config.h @@ -1,5 +1,8 @@ /* Generated automatically by the program `genconfig' -from the machine description file `md'. */ +from the machine description file `md'. + + $Id: insn-config.h,v 1.2 1993/08/02 17:36:58 mycroft Exp $ +*/ #define MAX_RECOG_OPERANDS 10 diff --git a/gnu/usr.bin/gcc2/i386/insn-emit.c b/gnu/usr.bin/gcc2/i386/insn-emit.c index 8a8d9bd4f80..87227c599d9 100644 --- a/gnu/usr.bin/gcc2/i386/insn-emit.c +++ b/gnu/usr.bin/gcc2/i386/insn-emit.c @@ -1,6 +1,10 @@ /* Generated automatically by the program `genemit' from the machine description file `md'. */ +#ifndef lint +static char rcsid[] = "$Id: insn-emit.c,v 1.2 1993/08/02 17:36:59 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include "rtl.h" #include "expr.h" diff --git a/gnu/usr.bin/gcc2/i386/insn-extract.c b/gnu/usr.bin/gcc2/i386/insn-extract.c index f645b830af8..64fbf42c177 100644 --- a/gnu/usr.bin/gcc2/i386/insn-extract.c +++ b/gnu/usr.bin/gcc2/i386/insn-extract.c @@ -1,6 +1,10 @@ /* Generated automatically by the program `genextract' from the machine description file `md'. */ +#ifndef lint +static char rcsid[] = "$Id: insn-extract.c,v 1.2 1993/08/02 17:37:01 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include "rtl.h" diff --git a/gnu/usr.bin/gcc2/i386/insn-flags.h b/gnu/usr.bin/gcc2/i386/insn-flags.h index 9070b93d11e..00b72f717fa 100644 --- a/gnu/usr.bin/gcc2/i386/insn-flags.h +++ b/gnu/usr.bin/gcc2/i386/insn-flags.h @@ -1,5 +1,8 @@ /* Generated automatically by the program `genflags' -from the machine description file `md'. */ +from the machine description file `md'. + + $Id: insn-flags.h,v 1.2 1993/08/02 17:37:02 mycroft Exp $ +*/ #define HAVE_tstsi_1 1 #define HAVE_tstsi 1 diff --git a/gnu/usr.bin/gcc2/i386/insn-opinit.c b/gnu/usr.bin/gcc2/i386/insn-opinit.c index 7959ae5fb1c..c33c4576ed0 100644 --- a/gnu/usr.bin/gcc2/i386/insn-opinit.c +++ b/gnu/usr.bin/gcc2/i386/insn-opinit.c @@ -1,6 +1,10 @@ /* Generated automatically by the program `genopinit' from the machine description file `md'. */ +#ifndef lint +static char rcsid[] = "$Id: insn-opinit.c,v 1.2 1993/08/02 17:37:03 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include "rtl.h" #include "flags.h" diff --git a/gnu/usr.bin/gcc2/i386/insn-output.c b/gnu/usr.bin/gcc2/i386/insn-output.c index c39c4ffcc10..403bc563495 100644 --- a/gnu/usr.bin/gcc2/i386/insn-output.c +++ b/gnu/usr.bin/gcc2/i386/insn-output.c @@ -1,6 +1,10 @@ /* Generated automatically by the program `genoutput' from the machine description file `md'. */ +#ifndef lint +static char rcsid[] = "$Id: insn-output.c,v 1.2 1993/08/02 17:37:04 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include "rtl.h" #include "regs.h" diff --git a/gnu/usr.bin/gcc2/i386/insn-peep.c b/gnu/usr.bin/gcc2/i386/insn-peep.c index 37136c4333d..357e104b89b 100644 --- a/gnu/usr.bin/gcc2/i386/insn-peep.c +++ b/gnu/usr.bin/gcc2/i386/insn-peep.c @@ -1,6 +1,10 @@ /* Generated automatically by the program `genpeep' from the machine description file `md'. */ +#ifndef lint +static char rcsid[] = "$Id: insn-peep.c,v 1.2 1993/08/02 17:37:06 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include "rtl.h" #include "regs.h" diff --git a/gnu/usr.bin/gcc2/i386/insn-recog.c b/gnu/usr.bin/gcc2/i386/insn-recog.c index bca21b305fe..45f4e937d13 100644 --- a/gnu/usr.bin/gcc2/i386/insn-recog.c +++ b/gnu/usr.bin/gcc2/i386/insn-recog.c @@ -1,6 +1,10 @@ /* Generated automatically by the program `genrecog' from the machine description file `md'. */ +#ifndef lint +static char rcsid[] = "$Id: insn-recog.c,v 1.2 1993/08/02 17:37:08 mycroft Exp $"; +#endif /* not lint */ + #include "config.h" #include "rtl.h" #include "insn-config.h" diff --git a/gnu/usr.bin/gcc2/i386/perform.h b/gnu/usr.bin/gcc2/i386/perform.h index c1a417071ca..53e6240e257 100644 --- a/gnu/usr.bin/gcc2/i386/perform.h +++ b/gnu/usr.bin/gcc2/i386/perform.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: perform.h,v 1.2 1993/08/02 17:37:10 mycroft Exp $ +*/ /* Defines to be able to build libgcc.a with GCC. */ diff --git a/gnu/usr.bin/gcc2/i386/tconfig.h b/gnu/usr.bin/gcc2/i386/tconfig.h index eb90681006f..fcbefa9c8b3 100644 --- a/gnu/usr.bin/gcc2/i386/tconfig.h +++ b/gnu/usr.bin/gcc2/i386/tconfig.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: tconfig.h,v 1.2 1993/08/02 17:37:11 mycroft Exp $ +*/ #ifndef i386 #define i386 diff --git a/gnu/usr.bin/gcc2/i386/tm.h b/gnu/usr.bin/gcc2/i386/tm.h index f7fbac12425..3b5c0c96fa3 100644 --- a/gnu/usr.bin/gcc2/i386/tm.h +++ b/gnu/usr.bin/gcc2/i386/tm.h @@ -1,4 +1,7 @@ -/* Configuration for an i386 running 386BSD as the target machine. */ +/* Configuration for an i386 running 386BSD as the target machine. + + $Id: tm.h,v 1.2 1993/08/02 17:37:11 mycroft Exp $ +*/ /* This is tested by i386gas.h. */ #define YES_UNDERSCORES diff --git a/gnu/usr.bin/gcc2/i386/unix.h b/gnu/usr.bin/gcc2/i386/unix.h index 7209176d191..2da09124f7f 100644 --- a/gnu/usr.bin/gcc2/i386/unix.h +++ b/gnu/usr.bin/gcc2/i386/unix.h @@ -15,7 +15,10 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to -the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + + $Id: unix.h,v 1.2 1993/08/02 17:37:12 mycroft Exp $ +*/ /* This file defines the aspects of assembler syntax that are the same for all the i386 Unix systems diff --git a/gnu/usr.bin/gcc2/libgcc/Makefile b/gnu/usr.bin/gcc2/libgcc/Makefile index a20b464b7d9..8d72510389c 100644 --- a/gnu/usr.bin/gcc2/libgcc/Makefile +++ b/gnu/usr.bin/gcc2/libgcc/Makefile @@ -1,3 +1,5 @@ +# $Id: Makefile,v 1.4 1993/08/02 17:37:32 mycroft Exp $ + LIB= gcc CC= cc CFLAGS= -I../common -I$(.CURDIR)/../$(MACHINE) diff --git a/gnu/usr.bin/gcc2/libgcc/__gcc_bcmp.c b/gnu/usr.bin/gcc2/libgcc/__gcc_bcmp.c index 6a405a1bb29..e762b0b481e 100644 --- a/gnu/usr.bin/gcc2/libgcc/__gcc_bcmp.c +++ b/gnu/usr.bin/gcc2/libgcc/__gcc_bcmp.c @@ -1,3 +1,5 @@ +/* $Id: __gcc_bcmp.c,v 1.2 1993/08/02 17:37:34 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/__main.c b/gnu/usr.bin/gcc2/libgcc/__main.c index 552bd7a608f..653bdca1315 100644 --- a/gnu/usr.bin/gcc2/libgcc/__main.c +++ b/gnu/usr.bin/gcc2/libgcc/__main.c @@ -1,3 +1,5 @@ +/* $Id: __main.c,v 1.2 1993/08/02 17:37:35 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_adddf3.c b/gnu/usr.bin/gcc2/libgcc/_adddf3.c index d2d6ea00938..0b2e21e39d3 100644 --- a/gnu/usr.bin/gcc2/libgcc/_adddf3.c +++ b/gnu/usr.bin/gcc2/libgcc/_adddf3.c @@ -1,3 +1,5 @@ +/* $Id: _adddf3.c,v 1.2 1993/08/02 17:37:36 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_addsf3.c b/gnu/usr.bin/gcc2/libgcc/_addsf3.c index 53d4ec964df..1594ffa19d1 100644 --- a/gnu/usr.bin/gcc2/libgcc/_addsf3.c +++ b/gnu/usr.bin/gcc2/libgcc/_addsf3.c @@ -1,3 +1,5 @@ +/* $Id: _addsf3.c,v 1.2 1993/08/02 17:37:37 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_ashldi3.c b/gnu/usr.bin/gcc2/libgcc/_ashldi3.c index 625fbdd77a5..f511ff42ca7 100644 --- a/gnu/usr.bin/gcc2/libgcc/_ashldi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_ashldi3.c @@ -1,3 +1,5 @@ +/* $Id: _ashldi3.c,v 1.2 1993/08/02 17:37:37 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_ashlsi3.c b/gnu/usr.bin/gcc2/libgcc/_ashlsi3.c index 50f0e992db7..becd3e1bef4 100644 --- a/gnu/usr.bin/gcc2/libgcc/_ashlsi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_ashlsi3.c @@ -1,3 +1,5 @@ +/* $Id: _ashlsi3.c,v 1.2 1993/08/02 17:37:38 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_ashrdi3.c b/gnu/usr.bin/gcc2/libgcc/_ashrdi3.c index 8bc9b4d4103..2acbe29b80e 100644 --- a/gnu/usr.bin/gcc2/libgcc/_ashrdi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_ashrdi3.c @@ -1,3 +1,5 @@ +/* $Id: _ashrdi3.c,v 1.2 1993/08/02 17:37:40 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_ashrsi3.c b/gnu/usr.bin/gcc2/libgcc/_ashrsi3.c index 1533cb74c9a..edea6d7574f 100644 --- a/gnu/usr.bin/gcc2/libgcc/_ashrsi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_ashrsi3.c @@ -1,3 +1,5 @@ +/* $Id: _ashrsi3.c,v 1.2 1993/08/02 17:37:41 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_bb.c b/gnu/usr.bin/gcc2/libgcc/_bb.c index d06a04112e4..b64b230a9b7 100644 --- a/gnu/usr.bin/gcc2/libgcc/_bb.c +++ b/gnu/usr.bin/gcc2/libgcc/_bb.c @@ -1,3 +1,5 @@ +/* $Id: _bb.c,v 1.2 1993/08/02 17:37:42 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_clear_cache.c b/gnu/usr.bin/gcc2/libgcc/_clear_cache.c index 2c928341b73..a5c58818a34 100644 --- a/gnu/usr.bin/gcc2/libgcc/_clear_cache.c +++ b/gnu/usr.bin/gcc2/libgcc/_clear_cache.c @@ -1,3 +1,5 @@ +/* $Id: _clear_cache.c,v 1.2 1993/08/02 17:37:43 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_cmpdi2.c b/gnu/usr.bin/gcc2/libgcc/_cmpdi2.c index 346939b97c7..08fc70763b5 100644 --- a/gnu/usr.bin/gcc2/libgcc/_cmpdi2.c +++ b/gnu/usr.bin/gcc2/libgcc/_cmpdi2.c @@ -1,3 +1,5 @@ +/* $Id: _cmpdi2.c,v 1.2 1993/08/02 17:37:44 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_ctors.c b/gnu/usr.bin/gcc2/libgcc/_ctors.c index 768f4b5a96b..730fb0a7683 100644 --- a/gnu/usr.bin/gcc2/libgcc/_ctors.c +++ b/gnu/usr.bin/gcc2/libgcc/_ctors.c @@ -1,3 +1,5 @@ +/* $Id: _ctors.c,v 1.2 1993/08/02 17:37:45 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_divdf3.c b/gnu/usr.bin/gcc2/libgcc/_divdf3.c index 109271cb7d3..156287a1b84 100644 --- a/gnu/usr.bin/gcc2/libgcc/_divdf3.c +++ b/gnu/usr.bin/gcc2/libgcc/_divdf3.c @@ -1,3 +1,5 @@ +/* $Id: _divdf3.c,v 1.2 1993/08/02 17:37:46 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_divdi3.c b/gnu/usr.bin/gcc2/libgcc/_divdi3.c index e5583cf7e59..533f6fecb8b 100644 --- a/gnu/usr.bin/gcc2/libgcc/_divdi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_divdi3.c @@ -1,3 +1,5 @@ +/* $Id: _divdi3.c,v 1.2 1993/08/02 17:37:46 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_divsf3.c b/gnu/usr.bin/gcc2/libgcc/_divsf3.c index d728bdd45a3..55e77644abe 100644 --- a/gnu/usr.bin/gcc2/libgcc/_divsf3.c +++ b/gnu/usr.bin/gcc2/libgcc/_divsf3.c @@ -1,3 +1,5 @@ +/* $Id: _divsf3.c,v 1.2 1993/08/02 17:37:47 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_divsi3.c b/gnu/usr.bin/gcc2/libgcc/_divsi3.c index 598045a3604..c004f35aa73 100644 --- a/gnu/usr.bin/gcc2/libgcc/_divsi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_divsi3.c @@ -1,3 +1,5 @@ +/* $Id: _divsi3.c,v 1.2 1993/08/02 17:37:48 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_eprintf.c b/gnu/usr.bin/gcc2/libgcc/_eprintf.c index 3352a4a73ca..4f6c9beb51a 100644 --- a/gnu/usr.bin/gcc2/libgcc/_eprintf.c +++ b/gnu/usr.bin/gcc2/libgcc/_eprintf.c @@ -1,3 +1,5 @@ +/* $Id: _eprintf.c,v 1.2 1993/08/02 17:37:49 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_eqdf2.c b/gnu/usr.bin/gcc2/libgcc/_eqdf2.c index a6e777ca8e1..ca706e2c249 100644 --- a/gnu/usr.bin/gcc2/libgcc/_eqdf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_eqdf2.c @@ -1,3 +1,5 @@ +/* $Id: _eqdf2.c,v 1.2 1993/08/02 17:37:50 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_eqsf2.c b/gnu/usr.bin/gcc2/libgcc/_eqsf2.c index c619a439ce9..7f383cde041 100644 --- a/gnu/usr.bin/gcc2/libgcc/_eqsf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_eqsf2.c @@ -1,3 +1,5 @@ +/* $Id: _eqsf2.c,v 1.2 1993/08/02 17:37:51 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_exit.c b/gnu/usr.bin/gcc2/libgcc/_exit.c index 3a09646ac23..bd58d904fa1 100644 --- a/gnu/usr.bin/gcc2/libgcc/_exit.c +++ b/gnu/usr.bin/gcc2/libgcc/_exit.c @@ -1,3 +1,5 @@ +/* $Id: _exit.c,v 1.2 1993/08/02 17:37:52 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_extendsfdf2.c b/gnu/usr.bin/gcc2/libgcc/_extendsfdf2.c index de02f5ba1d9..335d7b4e60c 100644 --- a/gnu/usr.bin/gcc2/libgcc/_extendsfdf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_extendsfdf2.c @@ -1,3 +1,5 @@ +/* $Id: _extendsfdf2.c,v 1.2 1993/08/02 17:37:53 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_ffsdi2.c b/gnu/usr.bin/gcc2/libgcc/_ffsdi2.c index 42b26a3c38d..cc71f80a497 100644 --- a/gnu/usr.bin/gcc2/libgcc/_ffsdi2.c +++ b/gnu/usr.bin/gcc2/libgcc/_ffsdi2.c @@ -1,3 +1,5 @@ +/* $Id: _ffsdi2.c,v 1.2 1993/08/02 17:37:53 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_fixdfdi.c b/gnu/usr.bin/gcc2/libgcc/_fixdfdi.c index 7368ef0781b..53286d52353 100644 --- a/gnu/usr.bin/gcc2/libgcc/_fixdfdi.c +++ b/gnu/usr.bin/gcc2/libgcc/_fixdfdi.c @@ -1,3 +1,5 @@ +/* $Id: _fixdfdi.c,v 1.2 1993/08/02 17:37:54 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_fixdfsi.c b/gnu/usr.bin/gcc2/libgcc/_fixdfsi.c index 16cbd4f5678..19a75073535 100644 --- a/gnu/usr.bin/gcc2/libgcc/_fixdfsi.c +++ b/gnu/usr.bin/gcc2/libgcc/_fixdfsi.c @@ -1,3 +1,5 @@ +/* $Id: _fixdfsi.c,v 1.2 1993/08/02 17:37:55 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_fixsfdi.c b/gnu/usr.bin/gcc2/libgcc/_fixsfdi.c index a851e1e6ee9..1f10a1359d6 100644 --- a/gnu/usr.bin/gcc2/libgcc/_fixsfdi.c +++ b/gnu/usr.bin/gcc2/libgcc/_fixsfdi.c @@ -1,3 +1,5 @@ +/* $Id: _fixsfdi.c,v 1.2 1993/08/02 17:37:56 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_fixsfsi.c b/gnu/usr.bin/gcc2/libgcc/_fixsfsi.c index 21408c77d70..c298dd795dc 100644 --- a/gnu/usr.bin/gcc2/libgcc/_fixsfsi.c +++ b/gnu/usr.bin/gcc2/libgcc/_fixsfsi.c @@ -1,3 +1,5 @@ +/* $Id: _fixsfsi.c,v 1.2 1993/08/02 17:37:57 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_fixunsdfdi.c b/gnu/usr.bin/gcc2/libgcc/_fixunsdfdi.c index dd5369fd676..b7cd59986d3 100644 --- a/gnu/usr.bin/gcc2/libgcc/_fixunsdfdi.c +++ b/gnu/usr.bin/gcc2/libgcc/_fixunsdfdi.c @@ -1,3 +1,5 @@ +/* $Id: _fixunsdfdi.c,v 1.2 1993/08/02 17:37:58 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_fixunsdfsi.c b/gnu/usr.bin/gcc2/libgcc/_fixunsdfsi.c index 99e7da18e89..b4686f117f0 100644 --- a/gnu/usr.bin/gcc2/libgcc/_fixunsdfsi.c +++ b/gnu/usr.bin/gcc2/libgcc/_fixunsdfsi.c @@ -1,3 +1,5 @@ +/* $Id: _fixunsdfsi.c,v 1.2 1993/08/02 17:37:59 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_fixunssfdi.c b/gnu/usr.bin/gcc2/libgcc/_fixunssfdi.c index d72ae0fb11f..682d03b2c47 100644 --- a/gnu/usr.bin/gcc2/libgcc/_fixunssfdi.c +++ b/gnu/usr.bin/gcc2/libgcc/_fixunssfdi.c @@ -1,3 +1,5 @@ +/* $Id: _fixunssfdi.c,v 1.2 1993/08/02 17:38:00 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_fixunssfsi.c b/gnu/usr.bin/gcc2/libgcc/_fixunssfsi.c index ee05d46beb4..4df43602dae 100644 --- a/gnu/usr.bin/gcc2/libgcc/_fixunssfsi.c +++ b/gnu/usr.bin/gcc2/libgcc/_fixunssfsi.c @@ -1,3 +1,5 @@ +/* $Id: _fixunssfsi.c,v 1.2 1993/08/02 17:38:01 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_fixunsxfdi.c b/gnu/usr.bin/gcc2/libgcc/_fixunsxfdi.c index 732d5d49ac5..7a3670c8102 100644 --- a/gnu/usr.bin/gcc2/libgcc/_fixunsxfdi.c +++ b/gnu/usr.bin/gcc2/libgcc/_fixunsxfdi.c @@ -1,3 +1,5 @@ +/* $Id: _fixunsxfdi.c,v 1.2 1993/08/02 17:38:01 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_fixunsxfsi.c b/gnu/usr.bin/gcc2/libgcc/_fixunsxfsi.c index 732d5d49ac5..b5df0ed3028 100644 --- a/gnu/usr.bin/gcc2/libgcc/_fixunsxfsi.c +++ b/gnu/usr.bin/gcc2/libgcc/_fixunsxfsi.c @@ -1,3 +1,5 @@ +/* $Id: _fixunsxfsi.c,v 1.2 1993/08/02 17:38:02 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_fixxfdi.c b/gnu/usr.bin/gcc2/libgcc/_fixxfdi.c index 732d5d49ac5..03ed1dcc5d2 100644 --- a/gnu/usr.bin/gcc2/libgcc/_fixxfdi.c +++ b/gnu/usr.bin/gcc2/libgcc/_fixxfdi.c @@ -1,3 +1,5 @@ +/* $Id: _fixxfdi.c,v 1.2 1993/08/02 17:38:03 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_floatdidf.c b/gnu/usr.bin/gcc2/libgcc/_floatdidf.c index afed7742899..88b47e2eeec 100644 --- a/gnu/usr.bin/gcc2/libgcc/_floatdidf.c +++ b/gnu/usr.bin/gcc2/libgcc/_floatdidf.c @@ -1,3 +1,5 @@ +/* $Id: _floatdidf.c,v 1.2 1993/08/02 17:38:04 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_floatdisf.c b/gnu/usr.bin/gcc2/libgcc/_floatdisf.c index 3bb79fee308..f0362f359dd 100644 --- a/gnu/usr.bin/gcc2/libgcc/_floatdisf.c +++ b/gnu/usr.bin/gcc2/libgcc/_floatdisf.c @@ -1,3 +1,5 @@ +/* $Id: _floatdisf.c,v 1.2 1993/08/02 17:38:05 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_floatdixf.c b/gnu/usr.bin/gcc2/libgcc/_floatdixf.c index 732d5d49ac5..dd829a2af60 100644 --- a/gnu/usr.bin/gcc2/libgcc/_floatdixf.c +++ b/gnu/usr.bin/gcc2/libgcc/_floatdixf.c @@ -1,3 +1,5 @@ +/* $Id: _floatdixf.c,v 1.2 1993/08/02 17:38:06 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_floatsidf.c b/gnu/usr.bin/gcc2/libgcc/_floatsidf.c index c8486deb408..db7486cc894 100644 --- a/gnu/usr.bin/gcc2/libgcc/_floatsidf.c +++ b/gnu/usr.bin/gcc2/libgcc/_floatsidf.c @@ -1,3 +1,5 @@ +/* $Id: _floatsidf.c,v 1.2 1993/08/02 17:38:07 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_floatsisf.c b/gnu/usr.bin/gcc2/libgcc/_floatsisf.c index 062c53651c3..677d3afbd2f 100644 --- a/gnu/usr.bin/gcc2/libgcc/_floatsisf.c +++ b/gnu/usr.bin/gcc2/libgcc/_floatsisf.c @@ -1,3 +1,5 @@ +/* $Id: _floatsisf.c,v 1.2 1993/08/02 17:38:08 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_gedf2.c b/gnu/usr.bin/gcc2/libgcc/_gedf2.c index 51f811400d9..3846a68df38 100644 --- a/gnu/usr.bin/gcc2/libgcc/_gedf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_gedf2.c @@ -1,3 +1,5 @@ +/* $Id: _gedf2.c,v 1.2 1993/08/02 17:38:08 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_gesf2.c b/gnu/usr.bin/gcc2/libgcc/_gesf2.c index c5090112999..04d362c8122 100644 --- a/gnu/usr.bin/gcc2/libgcc/_gesf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_gesf2.c @@ -1,3 +1,5 @@ +/* $Id: _gesf2.c,v 1.2 1993/08/02 17:38:10 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_gtdf2.c b/gnu/usr.bin/gcc2/libgcc/_gtdf2.c index 725c8061fc4..66b239c9c65 100644 --- a/gnu/usr.bin/gcc2/libgcc/_gtdf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_gtdf2.c @@ -1,3 +1,5 @@ +/* $Id: _gtdf2.c,v 1.2 1993/08/02 17:38:11 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_gtsf2.c b/gnu/usr.bin/gcc2/libgcc/_gtsf2.c index 790428457ea..28b14965c72 100644 --- a/gnu/usr.bin/gcc2/libgcc/_gtsf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_gtsf2.c @@ -1,3 +1,5 @@ +/* $Id: _gtsf2.c,v 1.2 1993/08/02 17:38:11 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_ledf2.c b/gnu/usr.bin/gcc2/libgcc/_ledf2.c index 3a66c86fa79..6bfa63d1592 100644 --- a/gnu/usr.bin/gcc2/libgcc/_ledf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_ledf2.c @@ -1,3 +1,5 @@ +/* $Id: _ledf2.c,v 1.2 1993/08/02 17:38:12 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_lesf2.c b/gnu/usr.bin/gcc2/libgcc/_lesf2.c index e96979e46e0..68ad587fd8a 100644 --- a/gnu/usr.bin/gcc2/libgcc/_lesf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_lesf2.c @@ -1,3 +1,5 @@ +/* $Id: _lesf2.c,v 1.2 1993/08/02 17:38:13 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_lshldi3.c b/gnu/usr.bin/gcc2/libgcc/_lshldi3.c index 83502ef82b4..d40ff1fe905 100644 --- a/gnu/usr.bin/gcc2/libgcc/_lshldi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_lshldi3.c @@ -1,3 +1,5 @@ +/* $Id: _lshldi3.c,v 1.2 1993/08/02 17:38:14 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_lshlsi3.c b/gnu/usr.bin/gcc2/libgcc/_lshlsi3.c index dd25e23ff6c..1be47c4f43e 100644 --- a/gnu/usr.bin/gcc2/libgcc/_lshlsi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_lshlsi3.c @@ -1,3 +1,5 @@ +/* $Id: _lshlsi3.c,v 1.2 1993/08/02 17:38:15 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_lshrdi3.c b/gnu/usr.bin/gcc2/libgcc/_lshrdi3.c index 202a155e565..1a442b3d836 100644 --- a/gnu/usr.bin/gcc2/libgcc/_lshrdi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_lshrdi3.c @@ -1,3 +1,5 @@ +/* $Id: _lshrdi3.c,v 1.2 1993/08/02 17:38:16 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_lshrsi3.c b/gnu/usr.bin/gcc2/libgcc/_lshrsi3.c index 9e60dfbc269..b685eb093d0 100644 --- a/gnu/usr.bin/gcc2/libgcc/_lshrsi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_lshrsi3.c @@ -1,3 +1,5 @@ +/* $Id: _lshrsi3.c,v 1.2 1993/08/02 17:38:17 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_ltdf2.c b/gnu/usr.bin/gcc2/libgcc/_ltdf2.c index c3eb5e3daf9..f6480e17be9 100644 --- a/gnu/usr.bin/gcc2/libgcc/_ltdf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_ltdf2.c @@ -1,3 +1,5 @@ +/* $Id: _ltdf2.c,v 1.2 1993/08/02 17:38:18 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_ltsf2.c b/gnu/usr.bin/gcc2/libgcc/_ltsf2.c index 24e4913596c..691e4b044c8 100644 --- a/gnu/usr.bin/gcc2/libgcc/_ltsf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_ltsf2.c @@ -1,3 +1,5 @@ +/* $Id: _ltsf2.c,v 1.2 1993/08/02 17:38:19 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_moddi3.c b/gnu/usr.bin/gcc2/libgcc/_moddi3.c index 21adcb69a55..0c330593efb 100644 --- a/gnu/usr.bin/gcc2/libgcc/_moddi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_moddi3.c @@ -1,3 +1,5 @@ +/* $Id: _moddi3.c,v 1.2 1993/08/02 17:38:20 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_modsi3.c b/gnu/usr.bin/gcc2/libgcc/_modsi3.c index 53ff2f4c9ff..f52ed60be58 100644 --- a/gnu/usr.bin/gcc2/libgcc/_modsi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_modsi3.c @@ -1,3 +1,5 @@ +/* $Id: _modsi3.c,v 1.2 1993/08/02 17:38:21 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_muldf3.c b/gnu/usr.bin/gcc2/libgcc/_muldf3.c index 0f17f80d7b0..4f051b31d44 100644 --- a/gnu/usr.bin/gcc2/libgcc/_muldf3.c +++ b/gnu/usr.bin/gcc2/libgcc/_muldf3.c @@ -1,3 +1,5 @@ +/* $Id: _muldf3.c,v 1.2 1993/08/02 17:38:22 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_muldi3.c b/gnu/usr.bin/gcc2/libgcc/_muldi3.c index e7c5785940b..7dd25502efe 100644 --- a/gnu/usr.bin/gcc2/libgcc/_muldi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_muldi3.c @@ -1,3 +1,5 @@ +/* $Id: _muldi3.c,v 1.2 1993/08/02 17:38:23 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_mulsf3.c b/gnu/usr.bin/gcc2/libgcc/_mulsf3.c index fa273d8ea1c..c2d784c2b35 100644 --- a/gnu/usr.bin/gcc2/libgcc/_mulsf3.c +++ b/gnu/usr.bin/gcc2/libgcc/_mulsf3.c @@ -1,3 +1,5 @@ +/* $Id: _mulsf3.c,v 1.2 1993/08/02 17:38:24 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_mulsi3.c b/gnu/usr.bin/gcc2/libgcc/_mulsi3.c index e69819d8e37..c372e3a685b 100644 --- a/gnu/usr.bin/gcc2/libgcc/_mulsi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_mulsi3.c @@ -1,3 +1,5 @@ +/* $Id: _mulsi3.c,v 1.2 1993/08/02 17:38:25 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_nedf2.c b/gnu/usr.bin/gcc2/libgcc/_nedf2.c index b6180d116e7..3bd1e0369a1 100644 --- a/gnu/usr.bin/gcc2/libgcc/_nedf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_nedf2.c @@ -1,3 +1,5 @@ +/* $Id: _nedf2.c,v 1.2 1993/08/02 17:38:26 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_negdf2.c b/gnu/usr.bin/gcc2/libgcc/_negdf2.c index a7720a38b7e..e728234265e 100644 --- a/gnu/usr.bin/gcc2/libgcc/_negdf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_negdf2.c @@ -1,3 +1,5 @@ +/* $Id: _negdf2.c,v 1.2 1993/08/02 17:38:27 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_negdi2.c b/gnu/usr.bin/gcc2/libgcc/_negdi2.c index 8e8f2d92114..ab3ccc3f0ac 100644 --- a/gnu/usr.bin/gcc2/libgcc/_negdi2.c +++ b/gnu/usr.bin/gcc2/libgcc/_negdi2.c @@ -1,3 +1,5 @@ +/* $Id: _negdi2.c,v 1.2 1993/08/02 17:38:27 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_negsf2.c b/gnu/usr.bin/gcc2/libgcc/_negsf2.c index 1a41647ad4d..366217f89bb 100644 --- a/gnu/usr.bin/gcc2/libgcc/_negsf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_negsf2.c @@ -1,3 +1,5 @@ +/* $Id: _negsf2.c,v 1.2 1993/08/02 17:38:28 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_nesf2.c b/gnu/usr.bin/gcc2/libgcc/_nesf2.c index 3ba837a083c..f5bc958fb82 100644 --- a/gnu/usr.bin/gcc2/libgcc/_nesf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_nesf2.c @@ -1,3 +1,5 @@ +/* $Id: _nesf2.c,v 1.2 1993/08/02 17:38:29 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_new_handler.c b/gnu/usr.bin/gcc2/libgcc/_new_handler.c index 4ae32268e63..3fcbb49a8ba 100644 --- a/gnu/usr.bin/gcc2/libgcc/_new_handler.c +++ b/gnu/usr.bin/gcc2/libgcc/_new_handler.c @@ -1,3 +1,5 @@ +/* $Id: _new_handler.c,v 1.2 1993/08/02 17:38:30 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_op_delete.c b/gnu/usr.bin/gcc2/libgcc/_op_delete.c index 12acf50d2a3..9e73cc6a5f8 100644 --- a/gnu/usr.bin/gcc2/libgcc/_op_delete.c +++ b/gnu/usr.bin/gcc2/libgcc/_op_delete.c @@ -1,3 +1,5 @@ +/* $Id: _op_delete.c,v 1.2 1993/08/02 17:38:31 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_op_new.c b/gnu/usr.bin/gcc2/libgcc/_op_new.c index 7dbf1541d1a..23623ae705e 100644 --- a/gnu/usr.bin/gcc2/libgcc/_op_new.c +++ b/gnu/usr.bin/gcc2/libgcc/_op_new.c @@ -1,3 +1,5 @@ +/* $Id: _op_new.c,v 1.2 1993/08/02 17:38:32 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_shtab.c b/gnu/usr.bin/gcc2/libgcc/_shtab.c index 183e984c0b4..afdedbbccda 100644 --- a/gnu/usr.bin/gcc2/libgcc/_shtab.c +++ b/gnu/usr.bin/gcc2/libgcc/_shtab.c @@ -1,3 +1,5 @@ +/* $Id: _shtab.c,v 1.2 1993/08/02 17:38:33 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_subdf3.c b/gnu/usr.bin/gcc2/libgcc/_subdf3.c index b2d1d9c506a..3bd734d43ef 100644 --- a/gnu/usr.bin/gcc2/libgcc/_subdf3.c +++ b/gnu/usr.bin/gcc2/libgcc/_subdf3.c @@ -1,3 +1,5 @@ +/* $Id: _subdf3.c,v 1.2 1993/08/02 17:38:34 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_subsf3.c b/gnu/usr.bin/gcc2/libgcc/_subsf3.c index 23c30596e09..122a0d91bad 100644 --- a/gnu/usr.bin/gcc2/libgcc/_subsf3.c +++ b/gnu/usr.bin/gcc2/libgcc/_subsf3.c @@ -1,3 +1,5 @@ +/* $Id: _subsf3.c,v 1.2 1993/08/02 17:38:35 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_trampoline.c b/gnu/usr.bin/gcc2/libgcc/_trampoline.c index 22a918bd9c2..6d2624f8cb6 100644 --- a/gnu/usr.bin/gcc2/libgcc/_trampoline.c +++ b/gnu/usr.bin/gcc2/libgcc/_trampoline.c @@ -1,3 +1,5 @@ +/* $Id: _trampoline.c,v 1.2 1993/08/02 17:38:37 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_truncdfsf2.c b/gnu/usr.bin/gcc2/libgcc/_truncdfsf2.c index e9d5d56f3a3..82b368109bd 100644 --- a/gnu/usr.bin/gcc2/libgcc/_truncdfsf2.c +++ b/gnu/usr.bin/gcc2/libgcc/_truncdfsf2.c @@ -1,3 +1,5 @@ +/* $Id: _truncdfsf2.c,v 1.2 1993/08/02 17:38:37 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_ucmpdi2.c b/gnu/usr.bin/gcc2/libgcc/_ucmpdi2.c index b3aeac4eff7..57a12b82508 100644 --- a/gnu/usr.bin/gcc2/libgcc/_ucmpdi2.c +++ b/gnu/usr.bin/gcc2/libgcc/_ucmpdi2.c @@ -1,3 +1,5 @@ +/* $Id: _ucmpdi2.c,v 1.2 1993/08/02 17:38:38 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_udiv_w_sdiv.c b/gnu/usr.bin/gcc2/libgcc/_udiv_w_sdiv.c index bae8a625a6b..9f94961c954 100644 --- a/gnu/usr.bin/gcc2/libgcc/_udiv_w_sdiv.c +++ b/gnu/usr.bin/gcc2/libgcc/_udiv_w_sdiv.c @@ -1,3 +1,5 @@ +/* $Id: _udiv_w_sdiv.c,v 1.2 1993/08/02 17:38:40 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_udivdi3.c b/gnu/usr.bin/gcc2/libgcc/_udivdi3.c index f6b6fa327fc..440e54dd487 100644 --- a/gnu/usr.bin/gcc2/libgcc/_udivdi3.c +++ b/gnu/usr.bin/gcc2/libgcc/_udivdi3.c @@ -1,3 +1,5 @@ +/* $Id: _udivdi3.c,v 1.2 1993/08/02 17:38:41 mycroft Exp $ */ + extern int target_flags; enum reg_class diff --git a/gnu/usr.bin/gcc2/libgcc/_udivmoddi4.c b/gnu/usr.bin/gcc2/libgcc/_udivmoddi4.c index f7b833fa053..d802d6a3f15 100644 --- a/gnu/usr.bin/gcc2/libgcc/_udivmoddi4.c +++ b/gnu/usr.bin/gcc2/libgcc/_udivmoddi4.c @@ -1,3 +1,5 @@ +/* $Id: _udivmoddi4.c,v 1.2 1993/08/02 17:38:42 mycroft Exp $ */ + extern int target_flags; enum reg_class |
