OSDN Git Service

2006-10-05 Erik Edelmann <edelmann@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / move_alloc.c
1 /* Generic implementation of the MOVE_ALLOC intrinsic
2    Copyright (C) 2006 Free Software Foundation, Inc.
3    Contributed by Paul Thomas
4
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6
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.
11
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.)
20
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.
25
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., 51 Franklin Street, Fifth Floor,
29 Boston, MA 02110-1301, USA.  */
30
31 #include "libgfortran.h"
32
33 extern void move_alloc (gfc_array_char *, gfc_array_char *);
34 export_proto(move_alloc);
35
36 void
37 move_alloc (gfc_array_char * from, gfc_array_char * to)
38 {
39   int i;
40
41   internal_free (to->data);
42
43   for (i = 0; i < GFC_DESCRIPTOR_RANK (from); i++)
44     {
45       to->dim[i].lbound = from->dim[i].lbound;
46       to->dim[i].ubound = from->dim[i].ubound;
47       to->dim[i].stride = from->dim[i].stride;
48       from->dim[i].stride = 0;
49       from->dim[i].ubound = from->dim[i].lbound;
50     }
51
52   to->offset = from->offset;
53   to->dtype = from->dtype;
54   to->data = from->data;
55   from->data = NULL;
56 }
57
58 extern void move_alloc_c (gfc_array_char *, GFC_INTEGER_4,
59                           gfc_array_char *, GFC_INTEGER_4);
60 export_proto(move_alloc_c);
61
62 void
63 move_alloc_c (gfc_array_char * from, GFC_INTEGER_4 from_length __attribute__((unused)),
64               gfc_array_char * to, GFC_INTEGER_4 to_length __attribute__((unused)))
65 {
66   move_alloc (from, to);
67 }