OSDN Git Service

PR c++/35297
[pf3gnuchains/gcc-fork.git] / libgfortran / runtime / select.c
1 /* Implement the SELECT statement for character variables.
2    Copyright 2008 Free Software Foundation, Inc.
3
4 This file is part of the GNU Fortran runtime library (libgfortran).
5
6 Libgfortran is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public
8 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version.
10
11 In addition to the permissions in the GNU General Public License, the
12 Free Software Foundation gives you unlimited permission to link the
13 compiled version of this file into combinations with other programs,
14 and to distribute those combinations without any restriction coming
15 from the use of this file.  (The General Public License restrictions
16 do apply in other respects; for example, they cover modification of
17 the file, and distribution when not linked into a combine
18 executable.)
19
20 Libgfortran is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 GNU General Public License for more details.
24
25 You should have received a copy of the GNU General Public
26 License along with libgfortran; see the file COPYING.  If not,
27 write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
28 Boston, MA 02110-1301, USA.  */
29
30
31 #include "libgfortran.h"
32
33
34 /* The string selection function is defined using a few generic macros
35    in select_inc.c, so we avoid code duplication between the various
36    character type kinds.  */
37
38 #undef  CHARTYPE
39 #define CHARTYPE char
40 #undef  SUFFIX
41 #define SUFFIX(x) x
42
43 #include "select_inc.c"
44
45
46 #undef  CHARTYPE
47 #define CHARTYPE gfc_char4_t
48 #undef  SUFFIX
49 #define SUFFIX(x) x ## _char4
50
51 #include "select_inc.c"
52