diff options
Diffstat (limited to 'gcc/f/bld-op.def')
-rw-r--r-- | gcc/f/bld-op.def | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/gcc/f/bld-op.def b/gcc/f/bld-op.def new file mode 100644 index 0000000..adaec06 --- /dev/null +++ b/gcc/f/bld-op.def @@ -0,0 +1,69 @@ +/* bld-op.def -- Public #include File (module.h template V1.0) + Copyright (C) 1995 Free Software Foundation, Inc. + Contributed by James Craig Burley (burley@gnu.ai.mit.edu). + +This file is part of GNU Fortran. + +GNU Fortran is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU Fortran is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with GNU Fortran; see the file COPYING. If not, write to +the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. + + Owning Modules: + bad.c + + Modifications: +*/ + +FFEBLD_OP (FFEBLD_opANY, "ANY", 0) +FFEBLD_OP (FFEBLD_opSTAR, "STAR", 0) /* For adjustable arrays, alternate return dummies, etc. */ +FFEBLD_OP (FFEBLD_opCONTER, "CONTER", 0) +FFEBLD_OP (FFEBLD_opARRTER, "ARRTER", 0) /* Array of constants (DATA...). */ +FFEBLD_OP (FFEBLD_opACCTER, "ACCTER", 0) /* Accreting ARRTER. */ +FFEBLD_OP (FFEBLD_opSYMTER, "SYMTER", 0) +FFEBLD_OP (FFEBLD_opITEM, "ITEM", 0) +FFEBLD_OP (FFEBLD_opUPLUS, "UPLUS", 1) +FFEBLD_OP (FFEBLD_opUMINUS, "UMINUS", 1) +FFEBLD_OP (FFEBLD_opADD, "ADD", 2) +FFEBLD_OP (FFEBLD_opSUBTRACT, "SUBTRACT", 2) +FFEBLD_OP (FFEBLD_opMULTIPLY, "MULTIPLY", 2) +FFEBLD_OP (FFEBLD_opDIVIDE, "DIVIDE", 2) +FFEBLD_OP (FFEBLD_opPOWER, "POWER", 2) +FFEBLD_OP (FFEBLD_opCONCATENATE, "CONCATENATE", 2) +FFEBLD_OP (FFEBLD_opNOT, "NOT", 1) +FFEBLD_OP (FFEBLD_opLT, "LT", 2) +FFEBLD_OP (FFEBLD_opLE, "LE", 2) +FFEBLD_OP (FFEBLD_opEQ, "EQ", 2) +FFEBLD_OP (FFEBLD_opNE, "NE", 2) +FFEBLD_OP (FFEBLD_opGT, "GT", 2) +FFEBLD_OP (FFEBLD_opGE, "GE", 2) +FFEBLD_OP (FFEBLD_opAND, "AND", 2) +FFEBLD_OP (FFEBLD_opOR, "OR", 2) +FFEBLD_OP (FFEBLD_opXOR, "XOR", 2) +FFEBLD_OP (FFEBLD_opEQV, "EQV", 2) +FFEBLD_OP (FFEBLD_opNEQV, "NEQV", 2) +FFEBLD_OP (FFEBLD_opPAREN, "PAREN", 1) +FFEBLD_OP (FFEBLD_opPERCENT_LOC, "%LOC", 1) +FFEBLD_OP (FFEBLD_opPERCENT_VAL, "%VAL", 1) +FFEBLD_OP (FFEBLD_opPERCENT_REF, "%REF", 1) +FFEBLD_OP (FFEBLD_opPERCENT_DESCR, "%DESCR", 1) +FFEBLD_OP (FFEBLD_opCONVERT, "CONVERT", 1) +FFEBLD_OP (FFEBLD_opREPEAT, "REPEAT", 2) +FFEBLD_OP (FFEBLD_opBOUNDS, "BOUNDS", 2) /* For low:high in dimension lists. */ +FFEBLD_OP (FFEBLD_opFUNCREF, "FUNCREF", 2) +FFEBLD_OP (FFEBLD_opSUBRREF, "SUBRREF", 2) +FFEBLD_OP (FFEBLD_opARRAYREF, "ARRAYREF", 2) +FFEBLD_OP (FFEBLD_opSUBSTR, "SUBSTR", 2) +FFEBLD_OP (FFEBLD_opLABTER, "LABTER", 0) +FFEBLD_OP (FFEBLD_opLABTOK, "LABTOK", 0) /* Like LABTER but contains ffelexToken instead. */ +FFEBLD_OP (FFEBLD_opIMPDO, "IMPDO", 2) |