2009-04-09 17:00:19 +02:00
|
|
|
! Copyright 2003, 2009 Free Software Foundation, Inc.
|
2004-05-13 08:41:07 +02:00
|
|
|
! Contributed by Paul Brook <paul@nowt.org>
|
|
|
|
!
|
|
|
|
!This file is part of the GNU Fortran 95 runtime library (libgfortran).
|
|
|
|
!
|
2009-04-09 17:00:19 +02:00
|
|
|
!Libgfortran is free software; you can redistribute it and/or
|
|
|
|
!modify it under the terms of the GNU General Public
|
2004-05-13 08:41:07 +02:00
|
|
|
!License as published by the Free Software Foundation; either
|
2009-04-09 17:00:19 +02:00
|
|
|
!version 3 of the License, or (at your option) any later version.
|
2004-05-13 08:41:07 +02:00
|
|
|
!
|
2009-04-09 17:00:19 +02:00
|
|
|
!Libgfortran is distributed in the hope that it will be useful,
|
2004-05-13 08:41:07 +02:00
|
|
|
!but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
!MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2009-04-09 17:00:19 +02:00
|
|
|
!GNU General Public License for more details.
|
2004-05-13 08:41:07 +02:00
|
|
|
!
|
2009-04-09 17:00:19 +02:00
|
|
|
!Under Section 7 of GPL version 3, you are granted additional
|
|
|
|
!permissions described in the GCC Runtime Library Exception, version
|
|
|
|
!3.1, as published by the Free Software Foundation.
|
|
|
|
!
|
|
|
|
!You should have received a copy of the GNU General Public License and
|
|
|
|
!a copy of the GCC Runtime Library Exception along with this program;
|
|
|
|
!see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
|
|
!<http://www.gnu.org/licenses/>.
|
2004-05-13 08:41:07 +02:00
|
|
|
|
|
|
|
|
2007-01-20 19:33:20 +01:00
|
|
|
elemental function _gfortran_specific__dprod_r8 (p1, p2)
|
2008-06-13 09:10:15 +02:00
|
|
|
implicit none
|
2004-05-13 08:41:07 +02:00
|
|
|
real (kind=4), intent (in) :: p1, p2
|
2007-01-20 19:33:20 +01:00
|
|
|
real (kind=8) :: _gfortran_specific__dprod_r8
|
2004-05-13 08:41:07 +02:00
|
|
|
|
2007-01-20 19:33:20 +01:00
|
|
|
_gfortran_specific__dprod_r8 = dprod (p1, p2)
|
2004-05-13 08:41:07 +02:00
|
|
|
end function
|