aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ch/Make-lang.in2
-rw-r--r--gcc/ch/Makefile.in2
-rw-r--r--gcc/ch/actions.c2
-rw-r--r--gcc/ch/ch-tree.h2
-rw-r--r--gcc/ch/convert.c2
-rw-r--r--gcc/ch/decl.c2
-rw-r--r--gcc/ch/except.c2
-rw-r--r--gcc/ch/expr.c2
-rw-r--r--gcc/ch/grant.c2
-rw-r--r--gcc/ch/inout.c2
-rw-r--r--gcc/ch/lang-specs.h2
-rw-r--r--gcc/ch/lang.c2
-rw-r--r--gcc/ch/loop.c2
-rw-r--r--gcc/ch/parse.c2
-rw-r--r--gcc/ch/satisfy.c2
-rw-r--r--gcc/ch/tasking.c2
-rw-r--r--gcc/ch/timing.c2
-rw-r--r--gcc/ch/tree.c2
-rw-r--r--gcc/ch/typeck.c2
-rw-r--r--gcc/ch/xtypeck.c18
-rw-r--r--gcc/java/Make-lang.in2
-rw-r--r--gcc/java/Makefile.in2
-rw-r--r--gcc/java/expr.c2
-rw-r--r--gcc/java/java-tree.h2
-rw-r--r--gcc/java/jcf-dump.c2
-rw-r--r--gcc/java/jcf-parse.c2
-rw-r--r--gcc/java/lex.c2
-rw-r--r--gcc/java/lex.h2
-rw-r--r--gcc/java/parse.h2
-rw-r--r--gcc/java/parse.y2
30 files changed, 47 insertions, 29 deletions
diff --git a/gcc/ch/Make-lang.in b/gcc/ch/Make-lang.in
index a4011f3..b6d9f89 100644
--- a/gcc/ch/Make-lang.in
+++ b/gcc/ch/Make-lang.in
@@ -1,5 +1,5 @@
# Top level Makefile fragment for GNU CHILL.
-# Copyright (C) 1994 Free Software Foundation, Inc.
+# Copyright (C) 1994, 1998 Free Software Foundation, Inc.
#This file is part of GNU CC.
diff --git a/gcc/ch/Makefile.in b/gcc/ch/Makefile.in
index 24ac23b..9278365 100644
--- a/gcc/ch/Makefile.in
+++ b/gcc/ch/Makefile.in
@@ -1,5 +1,5 @@
# Makefile for GNU CHILL compiler.
-# Copyright (C) 1987, 88, 90, 91, 92, 93, 1994 Free Software Foundation, Inc.
+# Copyright (C) 1987, 88, 90-94, 1998 Free Software Foundation, Inc.
#This file is part of GNU CC.
diff --git a/gcc/ch/actions.c b/gcc/ch/actions.c
index 6d636b7..326ae3d 100644
--- a/gcc/ch/actions.c
+++ b/gcc/ch/actions.c
@@ -1,5 +1,5 @@
/* Implement actions for CHILL.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
Authors: Per Bothner, Bill Cox, Michael Tiemann, Michael North
This file is part of GNU CC.
diff --git a/gcc/ch/ch-tree.h b/gcc/ch/ch-tree.h
index e1c399b..5a709c3 100644
--- a/gcc/ch/ch-tree.h
+++ b/gcc/ch/ch-tree.h
@@ -1,5 +1,5 @@
/* Definitions for CHILL parsing and type checking.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/convert.c b/gcc/ch/convert.c
index 93d1437..77a0ffe 100644
--- a/gcc/ch/convert.c
+++ b/gcc/ch/convert.c
@@ -1,5 +1,5 @@
/* Language-level data type conversion for GNU CHILL.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/decl.c b/gcc/ch/decl.c
index bf2561f..406103c 100644
--- a/gcc/ch/decl.c
+++ b/gcc/ch/decl.c
@@ -1,5 +1,5 @@
/* Process declarations and variables for GNU CHILL compiler.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/except.c b/gcc/ch/except.c
index 0a911bd..079a5e9 100644
--- a/gcc/ch/except.c
+++ b/gcc/ch/except.c
@@ -1,6 +1,6 @@
/* Exception support for GNU CHILL.
WARNING: Only works for native (needs setjmp.h)! FIXME!
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/expr.c b/gcc/ch/expr.c
index 0825ce6..09c222b 100644
--- a/gcc/ch/expr.c
+++ b/gcc/ch/expr.c
@@ -1,6 +1,6 @@
/* Convert language-specific tree expression to rtl instructions,
for GNU CHILL compiler.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/grant.c b/gcc/ch/grant.c
index ada788c..8bbbcd7 100644
--- a/gcc/ch/grant.c
+++ b/gcc/ch/grant.c
@@ -1,5 +1,5 @@
/* Implement grant-file output & seize-file input for CHILL.
- Copyright (C) 1992, 93, 94, 95, 1996 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 94, 95, 1996, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/inout.c b/gcc/ch/inout.c
index c191c91..86d6d1e 100644
--- a/gcc/ch/inout.c
+++ b/gcc/ch/inout.c
@@ -1,5 +1,5 @@
/* Implement I/O-related actions for CHILL.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/lang-specs.h b/gcc/ch/lang-specs.h
index b149af4..476bc34 100644
--- a/gcc/ch/lang-specs.h
+++ b/gcc/ch/lang-specs.h
@@ -1,5 +1,5 @@
/* Definitions for specs for GNU CHILL.
- Copyright (C) 1995 Free Software Foundation, Inc..
+ Copyright (C) 1995, 1998 Free Software Foundation, Inc..
This file is part of GNU CC.
diff --git a/gcc/ch/lang.c b/gcc/ch/lang.c
index 86d6490..56a65fd 100644
--- a/gcc/ch/lang.c
+++ b/gcc/ch/lang.c
@@ -1,5 +1,5 @@
/* Language-specific hook definitions for CHILL front end.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/loop.c b/gcc/ch/loop.c
index 88efaac..9e2736a 100644
--- a/gcc/ch/loop.c
+++ b/gcc/ch/loop.c
@@ -1,5 +1,5 @@
/* Implement looping actions for CHILL.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/parse.c b/gcc/ch/parse.c
index bd9304c..e87dcf7 100644
--- a/gcc/ch/parse.c
+++ b/gcc/ch/parse.c
@@ -1,5 +1,5 @@
/* Parser for GNU CHILL (CCITT High-Level Language) -*- C -*-
- Copyright (C) 1992, 1993 Free Software Foundation, Inc.
+ Copyright (C) 1992, 1993, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/satisfy.c b/gcc/ch/satisfy.c
index 634ee79..df5d78e 100644
--- a/gcc/ch/satisfy.c
+++ b/gcc/ch/satisfy.c
@@ -1,5 +1,5 @@
/* Name-satisfaction for GNU Chill compiler.
- Copyright (C) 1993 Free Software Foundation, Inc.
+ Copyright (C) 1993, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/tasking.c b/gcc/ch/tasking.c
index b3a1d2d..f49e9f3 100644
--- a/gcc/ch/tasking.c
+++ b/gcc/ch/tasking.c
@@ -1,5 +1,5 @@
/* Implement tasking-related actions for CHILL.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/timing.c b/gcc/ch/timing.c
index aa0c7a6..c477fe0 100644
--- a/gcc/ch/timing.c
+++ b/gcc/ch/timing.c
@@ -1,5 +1,5 @@
/* Implement timing-related actions for CHILL.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/tree.c b/gcc/ch/tree.c
index 5b69887..5045937 100644
--- a/gcc/ch/tree.c
+++ b/gcc/ch/tree.c
@@ -1,5 +1,5 @@
/* Language-dependent node constructors for parse phase of GNU compiler.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/typeck.c b/gcc/ch/typeck.c
index 102a30d..5462365 100644
--- a/gcc/ch/typeck.c
+++ b/gcc/ch/typeck.c
@@ -1,5 +1,5 @@
/* Build expressions with type checking for CHILL compiler.
- Copyright (C) 1992, 93, 1994 Free Software Foundation, Inc.
+ Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/ch/xtypeck.c b/gcc/ch/xtypeck.c
index 2946b23..f07797d 100644
--- a/gcc/ch/xtypeck.c
+++ b/gcc/ch/xtypeck.c
@@ -1,3 +1,21 @@
+/* Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
+
+This file is part of GNU CC.
+
+GNU CC is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+GNU CC is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+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. */
+
#if 0
tree
diff --git a/gcc/java/Make-lang.in b/gcc/java/Make-lang.in
index b71116c..49edd64 100644
--- a/gcc/java/Make-lang.in
+++ b/gcc/java/Make-lang.in
@@ -1,6 +1,6 @@
# Top level makefile fragment for the GNU compiler for the Java(TM)
# language.
-# Copyright (C) 1996, 1998 Free Software Foundation, Inc.
+# Copyright (C) 1996, 1998, 1999 Free Software Foundation, Inc.
#This file is part of GNU CC.
diff --git a/gcc/java/Makefile.in b/gcc/java/Makefile.in
index 158d584..f87eeeb 100644
--- a/gcc/java/Makefile.in
+++ b/gcc/java/Makefile.in
@@ -1,5 +1,5 @@
# Makefile for GNU compiler for the Java(TM) language.
-# Copyright (C) 1987, 88, 90-4, 1995, 1998 Free Software Foundation, Inc.
+# Copyright (C) 1987, 88, 90-5, 1998, 1999 Free Software Foundation, Inc.
#This file is part of GNU CC.
diff --git a/gcc/java/expr.c b/gcc/java/expr.c
index 9c55437..4c5d1bb 100644
--- a/gcc/java/expr.c
+++ b/gcc/java/expr.c
@@ -1,5 +1,5 @@
/* Process expressions for the GNU compiler for the Java(TM) language.
- Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h
index 2e9ac7c..dd94035 100644
--- a/gcc/java/java-tree.h
+++ b/gcc/java/java-tree.h
@@ -1,6 +1,6 @@
/* Definitions for parsing and type checking for the GNU compiler for
the Java(TM) language.
- Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/java/jcf-dump.c b/gcc/java/jcf-dump.c
index 36f0ead..cb962cb 100644
--- a/gcc/java/jcf-dump.c
+++ b/gcc/java/jcf-dump.c
@@ -1,7 +1,7 @@
/* Program to dump out a Java(TM) .class file.
Functionally similar to Sun's javap.
- Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c
index 6aafb5a..27ac86c 100644
--- a/gcc/java/jcf-parse.c
+++ b/gcc/java/jcf-parse.c
@@ -1,5 +1,5 @@
/* Parser for Java(TM) .class files.
- Copyright (C) 1996, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1996, 1998, 1999 Free Software Foundation, Inc.
This file is part of GNU CC.
diff --git a/gcc/java/lex.c b/gcc/java/lex.c
index f1b5469..fb83e5f 100644
--- a/gcc/java/lex.c
+++ b/gcc/java/lex.c
@@ -1,5 +1,5 @@
/* Language lexer for the GNU compiler for the Java(TM) language.
- Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
This file is part of GNU CC.
diff --git a/gcc/java/lex.h b/gcc/java/lex.h
index 0fb97a1..42cb1c4 100644
--- a/gcc/java/lex.h
+++ b/gcc/java/lex.h
@@ -1,5 +1,5 @@
/* Language lexer definitions for the GNU compiler for the Java(TM) language.
- Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
This file is part of GNU CC.
diff --git a/gcc/java/parse.h b/gcc/java/parse.h
index 72beb58..88f2dcb 100644
--- a/gcc/java/parse.h
+++ b/gcc/java/parse.h
@@ -1,5 +1,5 @@
/* Language parser definitions for the GNU compiler for the Java(TM) language.
- Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
This file is part of GNU CC.
diff --git a/gcc/java/parse.y b/gcc/java/parse.y
index 874d722..1680a68 100644
--- a/gcc/java/parse.y
+++ b/gcc/java/parse.y
@@ -1,6 +1,6 @@
/* Source code parsing and tree node generation for the GNU compiler
for the Java(TM) language.
- Copyright (C) 1997, 1998 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
This file is part of GNU CC.