]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/generated/shape_i8.c
re PR libfortran/19308 (I/O library should support more real and integer kinds)
[thirdparty/gcc.git] / libgfortran / generated / shape_i8.c
CommitLineData
6de9cd9a
DN
1/* Implementation of the SHAPE 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 6
57dea9f6
TM
7Libgfortran is free software; you can redistribute it and/or
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.)
20
21Libgfortran is distributed in the hope that it will be useful,
6de9cd9a
DN
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,
fe2ae685
KC
28write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29Boston, MA 02110-1301, USA. */
6de9cd9a
DN
30
31#include "config.h"
32#include <stdlib.h>
33#include <assert.h>
34#include "libgfortran.h"
35
644cb69f
FXC
36#if defined (HAVE_GFC_INTEGER_8)
37
7f68c75f
RH
38extern void shape_8 (gfc_array_i8 * ret, const gfc_array_i8 * array);
39export_proto(shape_8);
7d7b8bfe 40
6de9cd9a 41void
7f68c75f 42shape_8 (gfc_array_i8 * ret, const gfc_array_i8 * array)
6de9cd9a
DN
43{
44 int n;
45 index_type stride;
46
47 stride = ret->dim[0].stride;
48 if (stride == 0)
49 stride = 1;
50
51 for (n = 0; n < GFC_DESCRIPTOR_RANK (array); n++)
52 {
53 ret->data[n * stride] =
54 array->dim[n].ubound + 1 - array->dim[n].lbound;
55 }
56}
644cb69f
FXC
57
58#endif