xref: /openbsd/gnu/usr.bin/gcc/gcc/f/info-w.def (revision c87b03e5)
1*c87b03e5Sespie/* info-w.def -- Public #include File (module.h template V1.0)
2*c87b03e5Sespie   Copyright (C) 1995 Free Software Foundation, Inc.
3*c87b03e5Sespie   Contributed by James Craig Burley.
4*c87b03e5Sespie
5*c87b03e5SespieThis file is part of GNU Fortran.
6*c87b03e5Sespie
7*c87b03e5SespieGNU Fortran is free software; you can redistribute it and/or modify
8*c87b03e5Sespieit under the terms of the GNU General Public License as published by
9*c87b03e5Sespiethe Free Software Foundation; either version 2, or (at your option)
10*c87b03e5Sespieany later version.
11*c87b03e5Sespie
12*c87b03e5SespieGNU Fortran is distributed in the hope that it will be useful,
13*c87b03e5Sespiebut WITHOUT ANY WARRANTY; without even the implied warranty of
14*c87b03e5SespieMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15*c87b03e5SespieGNU General Public License for more details.
16*c87b03e5Sespie
17*c87b03e5SespieYou should have received a copy of the GNU General Public License
18*c87b03e5Sespiealong with GNU Fortran; see the file COPYING.  If not, write to
19*c87b03e5Sespiethe Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20*c87b03e5Sespie02111-1307, USA.
21*c87b03e5Sespie
22*c87b03e5Sespie   Owning Modules:
23*c87b03e5Sespie      info.c
24*c87b03e5Sespie
25*c87b03e5Sespie   Modifications:
26*c87b03e5Sespie*/
27*c87b03e5Sespie
28*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereNONE, "None", "")
29*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereLOCAL, "Local", "l")	/* Defined locally. */
30*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereCOMMON, "Common", "c")	/* In a common area. */
31*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereDUMMY, "Dummy", "d")	/* A dummy argument. */
32*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereGLOBAL, "Global", "g")	/* Reference to external global like FUNCTION, SUBR. */
33*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereRESULT, "Result", "r")	/* Result of this function. */
34*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereFLEETING, "Fleeting", "f")		/* Result of "X*Y", "FUNCREF(5,1.3)", "ARRAY(X)", etc. */
35*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereFLEETING_CADDR, "Fleet-Const", "fp")	/* "A(3)", "CHARS(4:5)". */
36*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereFLEETING_IADDR, "Fleet-Immed", "fi")	/* A(IX) in "DATA (A(IX),IX=1,100)/.../". */
37*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereIMMEDIATE, "Immediate", "i")	/* IX in "DATA (A(IX),IX=1,100)/.../". */
38*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereINTRINSIC, "Intrinsic", "b")
39*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereCONSTANT, "Constant", "p")		/* For kindFUNCTION, means statement function! */
40*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereCONSTANT_SUBOBJECT, "Const-subobj", "q")	/* As in "'FOO'(I:J)". */
41*c87b03e5SespieFFEINFO_WHERE (FFEINFO_whereANY, "Any", "~")
42