]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/m4/minloc0.m4
re PR libfortran/19280 (Inconsistent licensing of libgfortran)
[thirdparty/gcc.git] / libgfortran / m4 / minloc0.m4
CommitLineData
6de9cd9a
DN
1`/* Implementation of the MINLOC intrinsic
2 Copyright 2002 Free Software Foundation, Inc.
3 Contributed by Paul Brook <paul@nowt.org>
4
57dea9f6 5This file is part of the GNU Fortran 95 runtime library (libgfortran).
6de9cd9a
DN
6
7Libgfortran is free software; you can redistribute it and/or
57dea9f6 8modify it under the terms of the GNU General Public
6de9cd9a 9License as published by the Free Software Foundation; either
57dea9f6
TM
10version 2 of the License, or (at your option) any later version.
11
12In addition to the permissions in the GNU General Public License, the
13Free Software Foundation gives you unlimited permission to link the
14compiled version of this file into combinations with other programs,
15and to distribute those combinations without any restriction coming
16from the use of this file. (The General Public License restrictions
17do apply in other respects; for example, they cover modification of
18the file, and distribution when not linked into a combine
19executable.)
6de9cd9a
DN
20
21Libgfortran is distributed in the hope that it will be useful,
22but WITHOUT ANY WARRANTY; without even the implied warranty of
23MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
57dea9f6 24GNU General Public License for more details.
6de9cd9a 25
57dea9f6
TM
26You should have received a copy of the GNU General Public
27License along with libgfortran; see the file COPYING. If not,
6de9cd9a
DN
28write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
29Boston, MA 02111-1307, USA. */
30
31#include "config.h"
32#include <stdlib.h>
33#include <assert.h>
34#include <float.h>
35#include <limits.h>
36#include "libgfortran.h"'
37
38include(iparm.m4)dnl
39include(iforeach.m4)dnl
40
41FOREACH_FUNCTION(
c9e66eda 42` atype_name minval;
6de9cd9a 43
c9e66eda 44 minval = atype_max;'
6de9cd9a
DN
45,
46` if (*base < minval)
47 {
48 minval = *base;
49 for (n = 0; n < rank; n++)
50 dest[n * dstride] = count[n] + 1;
51 }')
52
53MASKED_FOREACH_FUNCTION(
c9e66eda 54` atype_name minval;
6de9cd9a 55
c9e66eda 56 minval = atype_max;'
6de9cd9a
DN
57,
58` if (*mbase && *base < minval)
59 {
60 minval = *base;
61 for (n = 0; n < rank; n++)
62 dest[n * dstride] = count[n] + 1;
63 }')