Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libgfortran / intrinsics / reshape_packed.c
blob06d1f76375958b63a64ed9d53c4743f746439548
1 /* Implementation of the RESHAPE intrinsic for packed arrays
2 Copyright 2002 Free Software Foundation, Inc.
3 Contributed by Paul Brook <paul@nowt.org>
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file. (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combine
19 executable.)
21 Ligbfortran is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public
27 License along with libgfortran; see the file COPYING. If not,
28 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, USA. */
31 #include "config.h"
32 #include "libgfortran.h"
34 #include <string.h>
36 /* Reshape function where all arrays are packed. Basically just memcpy. */
38 void
39 reshape_packed (char * ret, index_type rsize, const char * source,
40 index_type ssize, const char * pad, index_type psize)
42 index_type size;
44 size = (rsize > ssize) ? ssize : rsize;
45 memcpy (ret, source, size);
46 ret += size;
47 rsize -= size;
48 while (rsize > 0)
50 size = (rsize > psize) ? psize : rsize;
51 memcpy (ret, pad, size);
52 ret += size;
53 rsize -= size;