OSDN Git Service

libgfortran ChangeLog:
authorjb <jb@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 27 May 2006 07:11:29 +0000 (07:11 +0000)
committerjb <jb@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 27 May 2006 07:11:29 +0000 (07:11 +0000)
2006-05-27  Janne Blomqvist  <jb@gcc.gnu.org>

* intrinsics/abort.c (abort_): Remove.

testsuite ChangeLog:

2006-05-27  Janne Blomqvist  <jb@gcc.gnu.org>

* gfortran.dg/hollerith_f95.f90: Add -fall-intrinsics.
* gfortran.dg/byte_1.f90: Likewise.
* gfortran.dg/dup_save_2.f90: Likewise.

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

gcc/testsuite/ChangeLog
gcc/testsuite/gfortran.dg/byte_1.f90
gcc/testsuite/gfortran.dg/dup_save_2.f90
gcc/testsuite/gfortran.dg/hollerith_f95.f90
libgfortran/ChangeLog
libgfortran/intrinsics/abort.c

index 83b4d76..07b8fbe 100644 (file)
@@ -1,3 +1,9 @@
+2006-05-27  Janne Blomqvist  <jb@gcc.gnu.org>
+
+       * gfortran.dg/hollerith_f95.f90: Add -fall-intrinsics.
+       * gfortran.dg/byte_1.f90: Likewise.
+       * gfortran.dg/dup_save_2.f90: Likewise.
+
 2006-05-27  Paul Thomas  <pault@gcc.gnu.org>
 
        * gfortran.dg/associated_2.f90: New test.
index a9e239e..6cac421 100644 (file)
@@ -1,5 +1,5 @@
 ! { dg-do compile }
-! { dg-options "-std=f95" }
+! { dg-options "-fall-intrinsics -std=f95" }
 program testbyte
   integer(1) :: ii = 7
   call foo(ii)
index 3a24bdc..a0d340a 100644 (file)
@@ -1,5 +1,5 @@
 ! { dg-do compile }
-! { dg-options "-std=f95" }
+! { dg-options "-fall-intrinsics -std=f95" }
 program save_2
   implicit none
   integer i
index fc70c51..1ba7403 100644 (file)
@@ -1,5 +1,5 @@
 ! { dg-do compile }
-! { dg-options "-std=f95" }
+! { dg-options "-fall-intrinsics -std=f95" }
 ! PR15966, PR18781 & PR16531
 implicit none
 complex(kind=8) x(2) 
index dab931e..ff19d5e 100644 (file)
@@ -1,3 +1,7 @@
+2006-05-27  Janne Blomqvist  <jb@gcc.gnu.org>
+
+       * intrinsics/abort.c (abort_): Remove.
+
 2006-05-26  Janne Blomqvist  <jb@gcc.gnu.org>
 
        * configure.ac: Remove AC_FUNC_MMAP.
index 50876cb..6bf313a 100644 (file)
@@ -1,5 +1,5 @@
 /* Implementation of the ABORT intrinsic.
-   Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 
 This file is part of the GNU Fortran 95 runtime library (libgfortran).
 
@@ -38,15 +38,3 @@ void PREFIX(abort) (void)
   close_units ();
   abort ();
 }
-
-/* abort() is needed for the testsuite when linking with -std=f95.  */
-
-extern void abort_ (void);
-export_proto_np(abort_);
-
-void
-abort_ (void)
-{
-  close_units ();
-  abort ();
-}