]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/intrinsics/dprod_r8.f90
Update copyright years.
[thirdparty/gcc.git] / libgfortran / intrinsics / dprod_r8.f90
CommitLineData
cbe34bb5 1! Copyright (C) 2003-2017 Free Software Foundation, Inc.
6de9cd9a
DN
2! Contributed by Paul Brook <paul@nowt.org>
3!
4!This file is part of the GNU Fortran 95 runtime library (libgfortran).
5!
748086b7
JJ
6!Libgfortran is free software; you can redistribute it and/or
7!modify it under the terms of the GNU General Public
6de9cd9a 8!License as published by the Free Software Foundation; either
748086b7 9!version 3 of the License, or (at your option) any later version.
6de9cd9a 10!
748086b7 11!Libgfortran is distributed in the hope that it will be useful,
6de9cd9a
DN
12!but WITHOUT ANY WARRANTY; without even the implied warranty of
13!MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
748086b7 14!GNU General Public License for more details.
6de9cd9a 15!
748086b7
JJ
16!Under Section 7 of GPL version 3, you are granted additional
17!permissions described in the GCC Runtime Library Exception, version
18!3.1, as published by the Free Software Foundation.
19!
20!You should have received a copy of the GNU General Public License and
21!a copy of the GCC Runtime Library Exception along with this program;
22!see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23!<http://www.gnu.org/licenses/>.
6de9cd9a
DN
24
25
e6472bce 26elemental function _gfortran_specific__dprod_r8 (p1, p2)
c3e9b6ab 27 implicit none
6de9cd9a 28 real (kind=4), intent (in) :: p1, p2
e6472bce 29 real (kind=8) :: _gfortran_specific__dprod_r8
6de9cd9a 30
e6472bce 31 _gfortran_specific__dprod_r8 = dprod (p1, p2)
6de9cd9a 32end function