OSDN Git Service

Fix copyright problems reported by Doug Evans.
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 Jun 2003 19:31:12 +0000 (19:31 +0000)
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 Jun 2003 19:31:12 +0000 (19:31 +0000)
* config/frv/cmovc.c, config/frv/cmovh.c, config/frv/cmovw.c,
config/frv/frvbegin.c, config/frv/frvend.c, config/frv/lib1funcs.asm:
Add libgcc exception.

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

gcc/ChangeLog
gcc/config/frv/cmovd.c
gcc/config/frv/cmovh.c
gcc/config/frv/cmovw.c
gcc/config/frv/frvbegin.c
gcc/config/frv/frvend.c
gcc/config/frv/lib1funcs.asm

index ac969be..388cbcc 100644 (file)
@@ -1,3 +1,9 @@
+2003-06-09  James E Wilson  <wilson@tuliptree.org>
+
+       * config/frv/cmovc.c, config/frv/cmovh.c, config/frv/cmovw.c,
+       config/frv/frvbegin.c, config/frv/frvend.c, config/frv/lib1funcs.asm:
+       Add libgcc exception.
+
 2003-06-09  David Edelsohn  <edelsohn@gnu.org>
            Ayal Zaks  <gcchaifa@us.ibm.com>
 
 2003-06-09  David Edelsohn  <edelsohn@gnu.org>
            Ayal Zaks  <gcchaifa@us.ibm.com>
 
index 11b50ba..b452173 100644 (file)
@@ -1,5 +1,5 @@
 /* Move double-word library function.
 /* Move double-word library function.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2003 Free Software Foundation, Inc.
    Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
    Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
    the Free Software Foundation, 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
    the Free Software Foundation, 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
+/* As a special exception, if you link this library with other files,
+   some of which are compiled with GCC, to produce an executable,
+   this library does not by itself cause the resulting executable
+   to be covered by the GNU General Public License.
+   This exception does not however invalidate any other reasons why
+   the executable file might be covered by the GNU General Public License.  */
+
 void
 __cmovd (long long *dest, const long long *src, unsigned len)
 {
 void
 __cmovd (long long *dest, const long long *src, unsigned len)
 {
index 018a0b4..d2a0dec 100644 (file)
@@ -1,5 +1,5 @@
 /* Move half-word library function.
 /* Move half-word library function.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2003 Free Software Foundation, Inc.
    Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
    Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
    the Free Software Foundation, 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
    the Free Software Foundation, 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
+/* As a special exception, if you link this library with other files,
+   some of which are compiled with GCC, to produce an executable,
+   this library does not by itself cause the resulting executable
+   to be covered by the GNU General Public License.
+   This exception does not however invalidate any other reasons why
+   the executable file might be covered by the GNU General Public License.  */
+
 void
 __cmovh (short *dest, const short *src, unsigned len)
 {
 void
 __cmovh (short *dest, const short *src, unsigned len)
 {
index 5509e06..d8784e2 100644 (file)
@@ -1,5 +1,5 @@
 /* Move word library function.
 /* Move word library function.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2003 Free Software Foundation, Inc.
    Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
    Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
    the Free Software Foundation, 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
    the Free Software Foundation, 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
+/* As a special exception, if you link this library with other files,
+   some of which are compiled with GCC, to produce an executable,
+   this library does not by itself cause the resulting executable
+   to be covered by the GNU General Public License.
+   This exception does not however invalidate any other reasons why
+   the executable file might be covered by the GNU General Public License.  */
+
 void
 __cmovw (int *dest, const int *src, unsigned len)
 {
 void
 __cmovw (int *dest, const int *src, unsigned len)
 {
index a5f5b1f..d9215ec 100644 (file)
@@ -1,5 +1,5 @@
 /* Frv initialization file linked before all user modules
 /* Frv initialization file linked before all user modules
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc.
     Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
     Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
    This file was originally taken from the file crtstuff.c in the
    main compiler directory, and simplified. */
 
    This file was originally taken from the file crtstuff.c in the
    main compiler directory, and simplified. */
 
+/* As a special exception, if you link this library with other files,
+   some of which are compiled with GCC, to produce an executable,
+   this library does not by itself cause the resulting executable
+   to be covered by the GNU General Public License.
+   This exception does not however invalidate any other reasons why
+   the executable file might be covered by the GNU General Public License.  */
+
 #include "defaults.h"
 #include <stddef.h>
 #include "unwind-dw2-fde.h"
 #include "defaults.h"
 #include <stddef.h>
 #include "unwind-dw2-fde.h"
index f1635cc..a3124ba 100644 (file)
@@ -1,5 +1,5 @@
 /* Frv initialization file linked after all user modules
 /* Frv initialization file linked after all user modules
-   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc.
     Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
     Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
    the Free Software Foundation, 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA. */
 
    the Free Software Foundation, 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA. */
 
+/* As a special exception, if you link this library with other files,
+   some of which are compiled with GCC, to produce an executable,
+   this library does not by itself cause the resulting executable
+   to be covered by the GNU General Public License.
+   This exception does not however invalidate any other reasons why
+   the executable file might be covered by the GNU General Public License.  */
+
 #include "defaults.h"
 #include <stddef.h>
 #include "unwind-dw2-fde.h"
 #include "defaults.h"
 #include <stddef.h>
 #include "unwind-dw2-fde.h"
index 18a8142..5c5cac4 100644 (file)
@@ -1,5 +1,5 @@
 /* Library functions.
 /* Library functions.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2003 Free Software Foundation, Inc.
    Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
    Contributed by Red Hat, Inc.
   
    This file is part of GNU CC.
    the Free Software Foundation, 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
    the Free Software Foundation, 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
+/* As a special exception, if you link this library with other files,
+   some of which are compiled with GCC, to produce an executable,
+   this library does not by itself cause the resulting executable
+   to be covered by the GNU General Public License.
+   This exception does not however invalidate any other reasons why
+   the executable file might be covered by the GNU General Public License.  */
+
 #include <frv-asm.h>
 
 \f
 #include <frv-asm.h>
 
 \f