[BACK]Return to deffilep.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / gpl3 / binutils.old / dist / ld

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/external/gpl3/binutils.old/dist/ld/deffilep.c between version 1.4 and 1.5

version 1.4, 2016/12/14 21:48:38 version 1.5, 2018/04/14 15:49:44
Line 1 
Line 1 
 /* A Bison parser, made by GNU Bison 3.0.  */  /* A Bison parser, made by GNU Bison 2.3.  */
   
 /* Bison implementation for Yacc-like parsers in C  /* Skeleton implementation for Bison's Yacc-like parsers in C
   
    Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.     Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
      Free Software Foundation, Inc.
   
    This program is free software: you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or     the Free Software Foundation; either version 2, or (at your option)
    (at your option) any later version.     any later version.
   
    This program is distributed in the hope that it will be useful,     This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of     but WITHOUT ANY WARRANTY; without even the implied warranty of
Line 15 
Line 16 
    GNU General Public License for more details.     GNU General Public License for more details.
   
    You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */     along with this program; if not, write to the Free Software
      Foundation, Inc., 51 Franklin Street, Fifth Floor,
      Boston, MA 02110-1301, USA.  */
   
 /* As a special exception, you may create a larger work that contains  /* As a special exception, you may create a larger work that contains
    part or all of the Bison parser skeleton and distribute that work     part or all of the Bison parser skeleton and distribute that work
Line 44 
Line 47 
 #define YYBISON 1  #define YYBISON 1
   
 /* Bison version.  */  /* Bison version.  */
 #define YYBISON_VERSION "3.0"  #define YYBISON_VERSION "2.3"
   
 /* Skeleton name.  */  /* Skeleton name.  */
 #define YYSKELETON_NAME "yacc.c"  #define YYSKELETON_NAME "yacc.c"
Line 52 
Line 55 
 /* Pure parsers.  */  /* Pure parsers.  */
 #define YYPURE 0  #define YYPURE 0
   
 /* Push parsers.  */  /* Using locations.  */
 #define YYPUSH 0  #define YYLSP_NEEDED 0
   
 /* Pull parsers.  */  
 #define YYPULL 1  
   /* Tokens.  */
   #ifndef YYTOKENTYPE
   # define YYTOKENTYPE
      /* Put the tokens into the symbol table, so that GDB and other debuggers
         know about them.  */
      enum yytokentype {
        NAME = 258,
        LIBRARY = 259,
        DESCRIPTION = 260,
        STACKSIZE_K = 261,
        HEAPSIZE = 262,
        CODE = 263,
        DATAU = 264,
        DATAL = 265,
        SECTIONS = 266,
        EXPORTS = 267,
        IMPORTS = 268,
        VERSIONK = 269,
        BASE = 270,
        CONSTANTU = 271,
        CONSTANTL = 272,
        PRIVATEU = 273,
        PRIVATEL = 274,
        ALIGNCOMM = 275,
        READ = 276,
        WRITE = 277,
        EXECUTE = 278,
        SHARED = 279,
        NONAMEU = 280,
        NONAMEL = 281,
        DIRECTIVE = 282,
        EQUAL = 283,
        ID = 284,
        DIGITS = 285
      };
   #endif
   /* Tokens.  */
   #define NAME 258
   #define LIBRARY 259
   #define DESCRIPTION 260
   #define STACKSIZE_K 261
   #define HEAPSIZE 262
   #define CODE 263
   #define DATAU 264
   #define DATAL 265
   #define SECTIONS 266
   #define EXPORTS 267
   #define IMPORTS 268
   #define VERSIONK 269
   #define BASE 270
   #define CONSTANTU 271
   #define CONSTANTL 272
   #define PRIVATEU 273
   #define PRIVATEL 274
   #define ALIGNCOMM 275
   #define READ 276
   #define WRITE 277
   #define EXECUTE 278
   #define SHARED 279
   #define NONAMEU 280
   #define NONAMEL 281
   #define DIRECTIVE 282
   #define EQUAL 283
   #define ID 284
   #define DIGITS 285
   
   
   
   
 /* Copy the first part of user declarations.  */  /* Copy the first part of user declarations.  */
 #line 1 "deffilep.y" /* yacc.c:339  */  #line 1 "deffilep.y"
  /* deffilep.y - parser for .def files */   /* deffilep.y - parser for .def files */
   
 /*   Copyright (C) 1995-2015 Free Software Foundation, Inc.  /*   Copyright (C) 1995-2016 Free Software Foundation, Inc.
   
      This file is part of GNU Binutils.       This file is part of GNU Binutils.
   
Line 174  static const char *lex_parse_string = 0;
Line 242  static const char *lex_parse_string = 0;
 static const char *lex_parse_string_end = 0;  static const char *lex_parse_string_end = 0;
   
   
 #line 178 "deffilep.c" /* yacc.c:339  */  
   
 # ifndef YY_NULL  /* Enabling traces.  */
 #  if defined __cplusplus && 201103L <= __cplusplus  #ifndef YYDEBUG
 #   define YY_NULL nullptr  # define YYDEBUG 0
 #  else  #endif
 #   define YY_NULL 0  
 #  endif  
 # endif  
   
 /* Enabling verbose error messages.  */  /* Enabling verbose error messages.  */
 #ifdef YYERROR_VERBOSE  #ifdef YYERROR_VERBOSE
Line 192  static const char *lex_parse_string_end 
Line 256  static const char *lex_parse_string_end 
 # define YYERROR_VERBOSE 0  # define YYERROR_VERBOSE 0
 #endif  #endif
   
 /* In a future release of Bison, this section will be replaced  /* Enabling the token table.  */
    by #include "y.tab.h".  */  #ifndef YYTOKEN_TABLE
 #ifndef YY_YY_DEFFILEP_H_INCLUDED  # define YYTOKEN_TABLE 0
 # define YY_YY_DEFFILEP_H_INCLUDED  
 /* Debug traces.  */  
 #ifndef YYDEBUG  
 # define YYDEBUG 0  
 #endif  
 #if YYDEBUG  
 extern int yydebug;  
 #endif  
   
 /* Token type.  */  
 #ifndef YYTOKENTYPE  
 # define YYTOKENTYPE  
   enum yytokentype  
   {  
     NAME = 258,  
     LIBRARY = 259,  
     DESCRIPTION = 260,  
     STACKSIZE_K = 261,  
     HEAPSIZE = 262,  
     CODE = 263,  
     DATAU = 264,  
     DATAL = 265,  
     SECTIONS = 266,  
     EXPORTS = 267,  
     IMPORTS = 268,  
     VERSIONK = 269,  
     BASE = 270,  
     CONSTANTU = 271,  
     CONSTANTL = 272,  
     PRIVATEU = 273,  
     PRIVATEL = 274,  
     ALIGNCOMM = 275,  
     READ = 276,  
     WRITE = 277,  
     EXECUTE = 278,  
     SHARED = 279,  
     NONAMEU = 280,  
     NONAMEL = 281,  
     DIRECTIVE = 282,  
     EQUAL = 283,  
     ID = 284,  
     DIGITS = 285  
   };  
 #endif  #endif
 /* Tokens.  */  
 #define NAME 258  
 #define LIBRARY 259  
 #define DESCRIPTION 260  
 #define STACKSIZE_K 261  
 #define HEAPSIZE 262  
 #define CODE 263  
 #define DATAU 264  
 #define DATAL 265  
 #define SECTIONS 266  
 #define EXPORTS 267  
 #define IMPORTS 268  
 #define VERSIONK 269  
 #define BASE 270  
 #define CONSTANTU 271  
 #define CONSTANTL 272  
 #define PRIVATEU 273  
 #define PRIVATEL 274  
 #define ALIGNCOMM 275  
 #define READ 276  
 #define WRITE 277  
 #define EXECUTE 278  
 #define SHARED 279  
 #define NONAMEU 280  
 #define NONAMEL 281  
 #define DIRECTIVE 282  
 #define EQUAL 283  
 #define ID 284  
 #define DIGITS 285  
   
 /* Value type.  */  
 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED  #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
 typedef union YYSTYPE YYSTYPE;  typedef union YYSTYPE
 union YYSTYPE  #line 113 "deffilep.y"
 {  {
 #line 113 "deffilep.y" /* yacc.c:355  */  
   
   char *id;    char *id;
   const char *id_const;    const char *id_const;
   int number;    int number;
   bfd_vma vma;    bfd_vma vma;
   char *digits;    char *digits;
   }
 #line 286 "deffilep.c" /* yacc.c:355  */  /* Line 193 of yacc.c.  */
 };  #line 276 "deffilep.c"
 # define YYSTYPE_IS_TRIVIAL 1          YYSTYPE;
   # define yystype YYSTYPE /* obsolescent; will be withdrawn */
 # define YYSTYPE_IS_DECLARED 1  # define YYSTYPE_IS_DECLARED 1
   # define YYSTYPE_IS_TRIVIAL 1
 #endif  #endif
   
   
 extern YYSTYPE yylval;  
   
 int yyparse (void);  
   
 #endif /* !YY_YY_DEFFILEP_H_INCLUDED  */  
   
 /* Copy the second part of user declarations.  */  /* Copy the second part of user declarations.  */
   
 #line 301 "deffilep.c" /* yacc.c:358  */  
   /* Line 216 of yacc.c.  */
   #line 289 "deffilep.c"
   
 #ifdef short  #ifdef short
 # undef short  # undef short
Line 311  typedef unsigned char yytype_uint8;
Line 299  typedef unsigned char yytype_uint8;
   
 #ifdef YYTYPE_INT8  #ifdef YYTYPE_INT8
 typedef YYTYPE_INT8 yytype_int8;  typedef YYTYPE_INT8 yytype_int8;
 #else  #elif (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 typedef signed char yytype_int8;  typedef signed char yytype_int8;
   #else
   typedef short int yytype_int8;
 #endif  #endif
   
 #ifdef YYTYPE_UINT16  #ifdef YYTYPE_UINT16
Line 332  typedef short int yytype_int16;
Line 323  typedef short int yytype_int16;
 #  define YYSIZE_T __SIZE_TYPE__  #  define YYSIZE_T __SIZE_TYPE__
 # elif defined size_t  # elif defined size_t
 #  define YYSIZE_T size_t  #  define YYSIZE_T size_t
 # elif ! defined YYSIZE_T  # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */  #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
 #  define YYSIZE_T size_t  #  define YYSIZE_T size_t
 # else  # else
Line 346  typedef short int yytype_int16;
Line 338  typedef short int yytype_int16;
 # if defined YYENABLE_NLS && YYENABLE_NLS  # if defined YYENABLE_NLS && YYENABLE_NLS
 #  if ENABLE_NLS  #  if ENABLE_NLS
 #   include <libintl.h> /* INFRINGES ON USER NAME SPACE */  #   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
 #   define YY_(Msgid) dgettext ("bison-runtime", Msgid)  #   define YY_(msgid) dgettext ("bison-runtime", msgid)
 #  endif  #  endif
 # endif  # endif
 # ifndef YY_  # ifndef YY_
 #  define YY_(Msgid) Msgid  #  define YY_(msgid) msgid
 # endif  
 #endif  
   
 #ifndef __attribute__  
 /* This feature is available in gcc versions 2.5 and later.  */  
 # if (! defined __GNUC__ || __GNUC__ < 2 \  
       || (__GNUC__ == 2 && __GNUC_MINOR__ < 5))  
 #  define __attribute__(Spec) /* empty */  
 # endif  # endif
 #endif  #endif
   
 /* Suppress unused-variable warnings by "using" E.  */  /* Suppress unused-variable warnings by "using" E.  */
 #if ! defined lint || defined __GNUC__  #if ! defined lint || defined __GNUC__
 # define YYUSE(E) ((void) (E))  # define YYUSE(e) ((void) (e))
 #else  #else
 # define YYUSE(E) /* empty */  # define YYUSE(e) /* empty */
 #endif  #endif
   
 #if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__  /* Identity function, used to suppress warnings about constant conditions.  */
 /* Suppress an incorrect diagnostic about yylval being uninitialized.  */  #ifndef lint
 # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \  # define YYID(n) (n)
     _Pragma ("GCC diagnostic push") \  
     _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\  
     _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")  
 # define YY_IGNORE_MAYBE_UNINITIALIZED_END \  
     _Pragma ("GCC diagnostic pop")  
 #else  #else
 # define YY_INITIAL_VALUE(Value) Value  #if (defined __STDC__ || defined __C99__FUNC__ \
 #endif       || defined __cplusplus || defined _MSC_VER)
 #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN  static int
 # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN  YYID (int i)
 # define YY_IGNORE_MAYBE_UNINITIALIZED_END  #else
   static int
   YYID (i)
       int i;
 #endif  #endif
 #ifndef YY_INITIAL_VALUE  {
 # define YY_INITIAL_VALUE(Value) /* Nothing. */    return i;
   }
 #endif  #endif
   
   
 #if ! defined yyoverflow || YYERROR_VERBOSE  #if ! defined yyoverflow || YYERROR_VERBOSE
   
 /* The parser invokes alloca or malloc; define the necessary symbols.  */  /* The parser invokes alloca or malloc; define the necessary symbols.  */
Line 406  typedef short int yytype_int16;
Line 388  typedef short int yytype_int16;
 #    define alloca _alloca  #    define alloca _alloca
 #   else  #   else
 #    define YYSTACK_ALLOC alloca  #    define YYSTACK_ALLOC alloca
 #    if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS  #    if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 #     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */  #     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
       /* Use EXIT_SUCCESS as a witness for stdlib.h.  */  #     ifndef _STDLIB_H
 #     ifndef EXIT_SUCCESS  #      define _STDLIB_H 1
 #      define EXIT_SUCCESS 0  
 #     endif  #     endif
 #    endif  #    endif
 #   endif  #   endif
Line 418  typedef short int yytype_int16;
Line 400  typedef short int yytype_int16;
 # endif  # endif
   
 # ifdef YYSTACK_ALLOC  # ifdef YYSTACK_ALLOC
    /* Pacify GCC's 'empty if-body' warning.  */     /* Pacify GCC's `empty if-body' warning.  */
 #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)  #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
 #  ifndef YYSTACK_ALLOC_MAXIMUM  #  ifndef YYSTACK_ALLOC_MAXIMUM
     /* The OS might guarantee only one guard page at the bottom of the stack,      /* The OS might guarantee only one guard page at the bottom of the stack,
        and a page size can be as small as 4096 bytes.  So we cannot safely         and a page size can be as small as 4096 bytes.  So we cannot safely
Line 433  typedef short int yytype_int16;
Line 415  typedef short int yytype_int16;
 #  ifndef YYSTACK_ALLOC_MAXIMUM  #  ifndef YYSTACK_ALLOC_MAXIMUM
 #   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM  #   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
 #  endif  #  endif
 #  if (defined __cplusplus && ! defined EXIT_SUCCESS \  #  if (defined __cplusplus && ! defined _STDLIB_H \
        && ! ((defined YYMALLOC || defined malloc) \         && ! ((defined YYMALLOC || defined malloc) \
              && (defined YYFREE || defined free)))               && (defined YYFREE || defined free)))
 #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */  #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
 #   ifndef EXIT_SUCCESS  #   ifndef _STDLIB_H
 #    define EXIT_SUCCESS 0  #    define _STDLIB_H 1
 #   endif  #   endif
 #  endif  #  endif
 #  ifndef YYMALLOC  #  ifndef YYMALLOC
 #   define YYMALLOC malloc  #   define YYMALLOC malloc
 #   if ! defined malloc && ! defined EXIT_SUCCESS  #   if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */  void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
 #   endif  #   endif
 #  endif  #  endif
 #  ifndef YYFREE  #  ifndef YYFREE
 #   define YYFREE free  #   define YYFREE free
 #   if ! defined free && ! defined EXIT_SUCCESS  #   if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 void free (void *); /* INFRINGES ON USER NAME SPACE */  void free (void *); /* INFRINGES ON USER NAME SPACE */
 #   endif  #   endif
 #  endif  #  endif
Line 459  void free (void *); /* INFRINGES ON USER
Line 443  void free (void *); /* INFRINGES ON USER
   
 #if (! defined yyoverflow \  #if (! defined yyoverflow \
      && (! defined __cplusplus \       && (! defined __cplusplus \
          || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))           || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
   
 /* A type that is properly aligned for any stack member.  */  /* A type that is properly aligned for any stack member.  */
 union yyalloc  union yyalloc
 {  {
   yytype_int16 yyss_alloc;    yytype_int16 yyss;
   YYSTYPE yyvs_alloc;    YYSTYPE yyvs;
 };    };
   
 /* The size of the maximum gap between one aligned stack and the next.  */  /* The size of the maximum gap between one aligned stack and the next.  */
 # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)  # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
Line 477  union yyalloc
Line 461  union yyalloc
      ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \       ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
       + YYSTACK_GAP_MAXIMUM)        + YYSTACK_GAP_MAXIMUM)
   
 # define YYCOPY_NEEDED 1  /* Copy COUNT objects from FROM to TO.  The source and destination do
      not overlap.  */
   # ifndef YYCOPY
   #  if defined __GNUC__ && 1 < __GNUC__
   #   define YYCOPY(To, From, Count) \
         __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
   #  else
   #   define YYCOPY(To, From, Count)              \
         do                                        \
           {                                       \
             YYSIZE_T yyi;                         \
             for (yyi = 0; yyi < (Count); yyi++)   \
               (To)[yyi] = (From)[yyi];            \
           }                                       \
         while (YYID (0))
   #  endif
   # endif
   
 /* Relocate STACK from its old location to the new one.  The  /* Relocate STACK from its old location to the new one.  The
    local variables YYSIZE and YYSTACKSIZE give the old and new number of     local variables YYSIZE and YYSTACKSIZE give the old and new number of
    elements in the stack, and YYPTR gives the new location of the     elements in the stack, and YYPTR gives the new location of the
    stack.  Advance YYPTR to a properly aligned location for the next     stack.  Advance YYPTR to a properly aligned location for the next
    stack.  */     stack.  */
 # define YYSTACK_RELOCATE(Stack_alloc, Stack)                           \  # define YYSTACK_RELOCATE(Stack)                                        \
     do                                                                  \      do                                                                  \
       {                                                                 \        {                                                                 \
         YYSIZE_T yynewbytes;                                            \          YYSIZE_T yynewbytes;                                            \
         YYCOPY (&yyptr->Stack_alloc, Stack, yysize);                    \          YYCOPY (&yyptr->Stack, Stack, yysize);                          \
         Stack = &yyptr->Stack_alloc;                                    \          Stack = &yyptr->Stack;                                          \
         yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \          yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
         yyptr += yynewbytes / sizeof (*yyptr);                          \          yyptr += yynewbytes / sizeof (*yyptr);                          \
       }                                                                 \        }                                                                 \
     while (0)      while (YYID (0))
   
 #endif  #endif
   
 #if defined YYCOPY_NEEDED && YYCOPY_NEEDED  
 /* Copy COUNT objects from SRC to DST.  The source and destination do  
    not overlap.  */  
 # ifndef YYCOPY  
 #  if defined __GNUC__ && 1 < __GNUC__  
 #   define YYCOPY(Dst, Src, Count) \  
       __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))  
 #  else  
 #   define YYCOPY(Dst, Src, Count)              \  
       do                                        \  
         {                                       \  
           YYSIZE_T yyi;                         \  
           for (yyi = 0; yyi < (Count); yyi++)   \  
             (Dst)[yyi] = (Src)[yyi];            \  
         }                                       \  
       while (0)  
 #  endif  
 # endif  
 #endif /* !YYCOPY_NEEDED */  
   
 /* YYFINAL -- State number of the termination state.  */  /* YYFINAL -- State number of the termination state.  */
 #define YYFINAL  69  #define YYFINAL  69
 /* YYLAST -- Last index in YYTABLE.  */  /* YYLAST -- Last index in YYTABLE.  */
Line 528  union yyalloc
Line 508  union yyalloc
 #define YYNNTS  27  #define YYNNTS  27
 /* YYNRULES -- Number of rules.  */  /* YYNRULES -- Number of rules.  */
 #define YYNRULES  99  #define YYNRULES  99
 /* YYNSTATES -- Number of states.  */  /* YYNRULES -- Number of states.  */
 #define YYNSTATES  146  #define YYNSTATES  146
   
 /* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned  /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
    by yylex, with out-of-bounds checking.  */  
 #define YYUNDEFTOK  2  #define YYUNDEFTOK  2
 #define YYMAXUTOK   285  #define YYMAXUTOK   285
   
 #define YYTRANSLATE(YYX)                                                \  #define YYTRANSLATE(YYX)                                                \
   ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)    ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
   
 /* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM  /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
    as returned by yylex, without out-of-bounds checking.  */  
 static const yytype_uint8 yytranslate[] =  static const yytype_uint8 yytranslate[] =
 {  {
        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,         0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
Line 575  static const yytype_uint8 yytranslate[] 
Line 553  static const yytype_uint8 yytranslate[] 
 };  };
   
 #if YYDEBUG  #if YYDEBUG
   /* YYRLINE[YYN] -- Source line where rule number YYN was defined.  */  /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
      YYRHS.  */
   static const yytype_uint16 yyprhs[] =
   {
          0,     0,     3,     6,     8,    12,    16,    19,    23,    27,
         30,    33,    36,    39,    42,    45,    50,    53,    58,    59,
         61,    64,    72,    76,    77,    79,    81,    83,    85,    87,
         89,    91,    93,    96,    98,   107,   116,   123,   130,   137,
        142,   145,   147,   150,   153,   157,   159,   161,   162,   165,
        166,   168,   170,   172,   174,   176,   178,   180,   182,   184,
        186,   188,   190,   192,   194,   196,   198,   200,   202,   204,
        206,   208,   210,   212,   214,   216,   218,   220,   223,   226,
        230,   234,   236,   237,   240,   241,   244,   245,   248,   249,
        253,   254,   256,   259,   264,   266,   267,   269,   270,   272
   };
   
   /* YYRHS -- A `-1'-separated list of the rules' RHS.  */
   static const yytype_int8 yyrhs[] =
   {
         36,     0,    -1,    36,    37,    -1,    37,    -1,     3,    52,
         56,    -1,     4,    52,    56,    -1,     5,    29,    -1,     6,
         60,    48,    -1,     7,    60,    48,    -1,     8,    46,    -1,
          9,    46,    -1,    11,    44,    -1,    12,    38,    -1,    13,
         42,    -1,    14,    60,    -1,    14,    60,    31,    60,    -1,
         27,    29,    -1,    20,    57,    32,    60,    -1,    -1,    39,
         -1,    38,    39,    -1,    51,    55,    54,    47,    40,    47,
         53,    -1,    41,    47,    40,    -1,    -1,    25,    -1,    26,
         -1,    16,    -1,    17,    -1,     9,    -1,    10,    -1,    18,
         -1,    19,    -1,    42,    43,    -1,    43,    -1,    29,    33,
         29,    31,    29,    31,    29,    53,    -1,    29,    33,    29,
         31,    29,    31,    60,    53,    -1,    29,    33,    29,    31,
         29,    53,    -1,    29,    33,    29,    31,    60,    53,    -1,
         29,    31,    29,    31,    29,    53,    -1,    29,    31,    29,
         53,    -1,    44,    45,    -1,    45,    -1,    29,    46,    -1,
         29,    29,    -1,    46,    47,    49,    -1,    49,    -1,    32,
         -1,    -1,    32,    60,    -1,    -1,    21,    -1,    22,    -1,
         23,    -1,    24,    -1,    15,    -1,     8,    -1,    16,    -1,
         17,    -1,     9,    -1,    10,    -1,     5,    -1,    27,    -1,
         23,    -1,    12,    -1,     7,    -1,    13,    -1,     3,    -1,
         25,    -1,    26,    -1,    18,    -1,    19,    -1,    21,    -1,
         24,    -1,     6,    -1,    14,    -1,    22,    -1,    29,    -1,
         31,    50,    -1,    31,    51,    -1,    50,    31,    51,    -1,
         29,    31,    51,    -1,    51,    -1,    -1,    28,    29,    -1,
         -1,    34,    60,    -1,    -1,    33,    51,    -1,    -1,    15,
         33,    61,    -1,    -1,    29,    -1,    31,    29,    -1,    57,
         31,    58,    59,    -1,    30,    -1,    -1,    29,    -1,    -1,
         30,    -1,    30,    -1
   };
   
   /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
 static const yytype_uint16 yyrline[] =  static const yytype_uint16 yyrline[] =
 {  {
        0,   138,   138,   139,   143,   144,   145,   146,   147,   148,         0,   138,   138,   139,   143,   144,   145,   146,   147,   148,
Line 591  static const yytype_uint16 yyrline[] =
Line 618  static const yytype_uint16 yyrline[] =
 };  };
 #endif  #endif
   
 #if YYDEBUG || YYERROR_VERBOSE || 0  #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
 /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.  /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
    First, the terminals, then, starting at YYNTOKENS, nonterminals.  */     First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
 static const char *const yytname[] =  static const char *const yytname[] =
Line 606  static const char *const yytname[] =
Line 633  static const char *const yytname[] =
   "secline", "attr_list", "opt_comma", "opt_number", "attr",    "secline", "attr_list", "opt_comma", "opt_number", "attr",
   "keyword_as_name", "opt_name2", "opt_name", "opt_equalequal_name",    "keyword_as_name", "opt_name2", "opt_name", "opt_equalequal_name",
   "opt_ordinal", "opt_equal_name", "opt_base", "anylang_id", "opt_digits",    "opt_ordinal", "opt_equal_name", "opt_base", "anylang_id", "opt_digits",
   "opt_id", "NUMBER", "VMA", YY_NULL    "opt_id", "NUMBER", "VMA", 0
 };  };
 #endif  #endif
   
 # ifdef YYPRINT  # ifdef YYPRINT
 /* YYTOKNUM[NUM] -- (External) token number corresponding to the  /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
    (internal) symbol number NUM (which must be that of a token).  */     token YYLEX-NUM.  */
 static const yytype_uint16 yytoknum[] =  static const yytype_uint16 yytoknum[] =
 {  {
        0,   256,   257,   258,   259,   260,   261,   262,   263,   264,         0,   256,   257,   258,   259,   260,   261,   262,   263,   264,
Line 622  static const yytype_uint16 yytoknum[] =
Line 649  static const yytype_uint16 yytoknum[] =
 };  };
 # endif  # endif
   
 #define YYPACT_NINF -82  /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
   static const yytype_uint8 yyr1[] =
 #define yypact_value_is_default(Yystate) \  {
   (!!((Yystate) == (-82)))         0,    35,    36,    36,    37,    37,    37,    37,    37,    37,
         37,    37,    37,    37,    37,    37,    37,    37,    38,    38,
 #define YYTABLE_NINF -48        38,    39,    40,    40,    41,    41,    41,    41,    41,    41,
         41,    41,    42,    42,    43,    43,    43,    43,    43,    43,
 #define yytable_value_is_error(Yytable_value) \        44,    44,    45,    45,    46,    46,    47,    47,    48,    48,
   0        49,    49,    49,    49,    50,    50,    50,    50,    50,    50,
         50,    50,    50,    50,    50,    50,    50,    50,    50,    50,
         50,    50,    50,    50,    50,    50,    51,    51,    51,    51,
         51,    52,    52,    53,    53,    54,    54,    55,    55,    56,
         56,    57,    57,    57,    58,    58,    59,    59,    60,    61
   };
   
   /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing  /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
      STATE-NUM.  */  static const yytype_uint8 yyr2[] =
 static const yytype_int8 yypact[] =  
 {  {
      122,    11,    11,   -25,     9,     9,    53,    53,   -17,    11,         0,     2,     2,     1,     3,     3,     2,     3,     3,     2,
       14,     9,   -18,    20,    95,   -82,   -82,   -82,   -82,   -82,         2,     2,     2,     2,     2,     4,     2,     4,     0,     1,
      -82,   -82,   -82,   -82,   -82,   -82,   -82,   -82,   -82,   -82,         2,     7,     3,     0,     1,     1,     1,     1,     1,     1,
      -82,   -82,   -82,   -82,   -82,   -82,   -82,   -82,    29,    11,         1,     1,     2,     1,     8,     8,     6,     6,     6,     4,
       47,   -82,    67,    67,   -82,   -82,    54,    54,   -82,   -82,         2,     1,     2,     2,     3,     1,     1,     0,     2,     0,
      -82,   -82,    48,   -82,    48,   -14,   -17,   -82,    11,   -82,         1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
       58,    50,    14,   -82,    61,   -82,    64,    33,   -82,   -82,         1,     1,     1,     1,     1,     1,     1,     1,     1,     1,
      -82,    11,    47,   -82,    11,    63,   -82,   -82,     9,   -82,         1,     1,     1,     1,     1,     1,     1,     2,     2,     3,
      -82,   -82,    53,   -82,    48,   -82,   -82,    11,    60,    76,         3,     1,     0,     2,     0,     2,     0,     2,     0,     3,
       81,   -82,     9,   -82,    83,     9,   -82,   -82,    84,   -82,         0,     1,     2,     4,     1,     0,     1,     0,     1,     1
      -82,   -82,     9,    79,   -26,    85,   -82,   -82,    88,   -82,  
      -82,   -82,   -82,    36,    89,    90,   -82,    55,   -82,   -82,  
      -82,   -82,   -82,   -82,   -82,   -82,   -82,   -82,    79,    79,  
      -82,    92,    13,    92,    92,    36,   -82,    59,   -82,   -82,  
      -82,   -82,    92,    92,   -82,   -82  
 };  };
   
   /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.  /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
      Performed when YYTABLE does not specify something else to do.  Zero     STATE-NUM when YYTABLE doesn't specify something else to do.  Zero
      means the default is an error.  */     means the default is an error.  */
 static const yytype_uint8 yydefact[] =  static const yytype_uint8 yydefact[] =
 {  {
        0,    82,    82,     0,     0,     0,     0,     0,     0,    18,         0,    82,    82,     0,     0,     0,     0,     0,     0,    18,
Line 675  static const yytype_uint8 yydefact[] =
Line 701  static const yytype_uint8 yydefact[] =
       21,    22,    84,    84,    34,    35        21,    22,    84,    84,    34,    35
 };  };
   
   /* YYPGOTO[NTERM-NUM].  */  /* YYDEFGOTO[NTERM-NUM].  */
 static const yytype_int16 yypgoto[] =  
 {  
      -82,   -82,   107,   -82,    65,   -11,   -82,   -82,    75,   -82,  
       82,    -4,   -81,    93,    57,   102,    -8,   141,   -75,   -82,  
      -82,   101,   -82,   -82,   -82,    -5,   -82  
 };  
   
   /* YYDEFGOTO[NTERM-NUM].  */  
 static const yytype_int16 yydefgoto[] =  static const yytype_int16 yydefgoto[] =
 {  {
       -1,    14,    15,    58,    59,   128,   129,    62,    63,    56,        -1,    14,    15,    58,    59,   128,   129,    62,    63,    56,
Line 691  static const yytype_int16 yydefgoto[] =
Line 709  static const yytype_int16 yydefgoto[] =
       88,    76,    67,   108,   119,    46,   111        88,    76,    67,   108,   119,    46,   111
 };  };
   
   /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM.  If  /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
      positive, shift that token.  If negative, reduce the rule whose     STATE-NUM.  */
      number is the opposite.  If YYTABLE_NINF, syntax error.  */  #define YYPACT_NINF -82
   static const yytype_int8 yypact[] =
   {
        122,    11,    11,   -25,     9,     9,    53,    53,   -17,    11,
         14,     9,   -18,    20,    95,   -82,   -82,   -82,   -82,   -82,
        -82,   -82,   -82,   -82,   -82,   -82,   -82,   -82,   -82,   -82,
        -82,   -82,   -82,   -82,   -82,   -82,   -82,   -82,    29,    11,
         47,   -82,    67,    67,   -82,   -82,    54,    54,   -82,   -82,
        -82,   -82,    48,   -82,    48,   -14,   -17,   -82,    11,   -82,
         58,    50,    14,   -82,    61,   -82,    64,    33,   -82,   -82,
        -82,    11,    47,   -82,    11,    63,   -82,   -82,     9,   -82,
        -82,   -82,    53,   -82,    48,   -82,   -82,    11,    60,    76,
         81,   -82,     9,   -82,    83,     9,   -82,   -82,    84,   -82,
        -82,   -82,     9,    79,   -26,    85,   -82,   -82,    88,   -82,
        -82,   -82,   -82,    36,    89,    90,   -82,    55,   -82,   -82,
        -82,   -82,   -82,   -82,   -82,   -82,   -82,   -82,    79,    79,
        -82,    92,    13,    92,    92,    36,   -82,    59,   -82,   -82,
        -82,   -82,    92,    92,   -82,   -82
   };
   
   /* YYPGOTO[NTERM-NUM].  */
   static const yytype_int16 yypgoto[] =
   {
        -82,   -82,   107,   -82,    65,   -11,   -82,   -82,    75,   -82,
         82,    -4,   -81,    93,    57,   102,    -8,   141,   -75,   -82,
        -82,   101,   -82,   -82,   -82,    -5,   -82
   };
   
   /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
      positive, shift that token.  If negative, reduce the rule which
      number is the opposite.  If zero, do what YYDEFACT says.
      If YYTABLE_NINF, syntax error.  */
   #define YYTABLE_NINF -48
 static const yytype_int16 yytable[] =  static const yytype_int16 yytable[] =
 {  {
       47,    60,   114,    54,    44,   115,    64,    48,    49,    50,        47,    60,   114,    54,    44,   115,    64,    48,    49,    50,
Line 732  static const yytype_int16 yycheck[] =
Line 782  static const yytype_int16 yycheck[] =
       47,    39,    20,     2,    43,    -1,    -1,    -1,    -1,    27        47,    39,    20,     2,    43,    -1,    -1,    -1,    -1,    27
 };  };
   
   /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing  /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
      symbol of state STATE-NUM.  */     symbol of state STATE-NUM.  */
 static const yytype_uint8 yystos[] =  static const yytype_uint8 yystos[] =
 {  {
        0,     3,     4,     5,     6,     7,     8,     9,    11,    12,         0,     3,     4,     5,     6,     7,     8,     9,    11,    12,
Line 753  static const yytype_uint8 yystos[] =
Line 803  static const yytype_uint8 yystos[] =
       53,    40,    29,    60,    53,    53        53,    40,    29,    60,    53,    53
 };  };
   
   /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */  #define yyerrok         (yyerrstatus = 0)
 static const yytype_uint8 yyr1[] =  #define yyclearin       (yychar = YYEMPTY)
 {  #define YYEMPTY         (-2)
        0,    35,    36,    36,    37,    37,    37,    37,    37,    37,  #define YYEOF           0
       37,    37,    37,    37,    37,    37,    37,    37,    38,    38,  
       38,    39,    40,    40,    41,    41,    41,    41,    41,    41,  
       41,    41,    42,    42,    43,    43,    43,    43,    43,    43,  
       44,    44,    45,    45,    46,    46,    47,    47,    48,    48,  
       49,    49,    49,    49,    50,    50,    50,    50,    50,    50,  
       50,    50,    50,    50,    50,    50,    50,    50,    50,    50,  
       50,    50,    50,    50,    50,    50,    51,    51,    51,    51,  
       51,    52,    52,    53,    53,    54,    54,    55,    55,    56,  
       56,    57,    57,    57,    58,    58,    59,    59,    60,    61  
 };  
   
   /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN.  */  #define YYACCEPT        goto yyacceptlab
 static const yytype_uint8 yyr2[] =  #define YYABORT         goto yyabortlab
 {  #define YYERROR         goto yyerrorlab
        0,     2,     2,     1,     3,     3,     2,     3,     3,     2,  
        2,     2,     2,     2,     2,     4,     2,     4,     0,     1,  
        2,     7,     3,     0,     1,     1,     1,     1,     1,     1,  
        1,     1,     2,     1,     8,     8,     6,     6,     6,     4,  
        2,     1,     2,     2,     3,     1,     1,     0,     2,     0,  
        1,     1,     1,     1,     1,     1,     1,     1,     1,     1,  
        1,     1,     1,     1,     1,     1,     1,     1,     1,     1,  
        1,     1,     1,     1,     1,     1,     1,     2,     2,     3,  
        3,     1,     0,     2,     0,     2,     0,     2,     0,     3,  
        0,     1,     2,     4,     1,     0,     1,     0,     1,     1  
 };  
   
   
 #define yyerrok         (yyerrstatus = 0)  /* Like YYERROR except do call yyerror.  This remains here temporarily
 #define yyclearin       (yychar = YYEMPTY)     to ease the transition to the new meaning of YYERROR, for GCC.
 #define YYEMPTY         (-2)     Once GCC version 2 has supplanted version 1, this can go.  */
 #define YYEOF           0  
   
 #define YYACCEPT        goto yyacceptlab  
 #define YYABORT         goto yyabortlab  
 #define YYERROR         goto yyerrorlab  
   
   #define YYFAIL          goto yyerrlab
   
 #define YYRECOVERING()  (!!yyerrstatus)  #define YYRECOVERING()  (!!yyerrstatus)
   
 #define YYBACKUP(Token, Value)                                  \  #define YYBACKUP(Token, Value)                                  \
 do                                                              \  do                                                              \
   if (yychar == YYEMPTY)                                        \    if (yychar == YYEMPTY && yylen == 1)                          \
     {                                                           \      {                                                           \
       yychar = (Token);                                         \        yychar = (Token);                                         \
       yylval = (Value);                                         \        yylval = (Value);                                         \
       YYPOPSTACK (yylen);                                       \        yytoken = YYTRANSLATE (yychar);                           \
       yystate = *yyssp;                                         \        YYPOPSTACK (1);                                           \
       goto yybackup;                                            \        goto yybackup;                                            \
     }                                                           \      }                                                           \
   else                                                          \    else                                                          \
     {                                                           \      {                                                           \
       yyerror (YY_("syntax error: cannot back up")); \        yyerror (YY_("syntax error: cannot back up")); \
       YYERROR;                                                  \        YYERROR;                                                  \
     }                                                           \      }                                                           \
 while (0)  while (YYID (0))
   
 /* Error token number */  
 #define YYTERROR        1  #define YYTERROR        1
 #define YYERRCODE       256  #define YYERRCODE       256
   
   
   /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
      If N is 0, then set CURRENT to the empty location which ends
      the previous symbol: RHS[0] (always defined).  */
   
   #define YYRHSLOC(Rhs, K) ((Rhs)[K])
   #ifndef YYLLOC_DEFAULT
   # define YYLLOC_DEFAULT(Current, Rhs, N)                                \
       do                                                                  \
         if (YYID (N))                                                    \
           {                                                               \
             (Current).first_line   = YYRHSLOC (Rhs, 1).first_line;        \
             (Current).first_column = YYRHSLOC (Rhs, 1).first_column;      \
             (Current).last_line    = YYRHSLOC (Rhs, N).last_line;         \
             (Current).last_column  = YYRHSLOC (Rhs, N).last_column;       \
           }                                                               \
         else                                                              \
           {                                                               \
             (Current).first_line   = (Current).last_line   =              \
               YYRHSLOC (Rhs, 0).last_line;                                \
             (Current).first_column = (Current).last_column =              \
               YYRHSLOC (Rhs, 0).last_column;                              \
           }                                                               \
       while (YYID (0))
   #endif
   
   
   /* YY_LOCATION_PRINT -- Print the location on the stream.
      This macro was not mandated originally: define only if we know
      we won't break user code: when these are the locations we know.  */
   
   #ifndef YY_LOCATION_PRINT
   # if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL
   #  define YY_LOCATION_PRINT(File, Loc)                  \
        fprintf (File, "%d.%d-%d.%d",                      \
                 (Loc).first_line, (Loc).first_column,     \
                 (Loc).last_line,  (Loc).last_column)
   # else
   #  define YY_LOCATION_PRINT(File, Loc) ((void) 0)
   # endif
   #endif
   
   
   /* YYLEX -- calling `yylex' with the right arguments.  */
   
   #ifdef YYLEX_PARAM
   # define YYLEX yylex (YYLEX_PARAM)
   #else
   # define YYLEX yylex ()
   #endif
   
 /* Enable debugging if requested.  */  /* Enable debugging if requested.  */
 #if YYDEBUG  #if YYDEBUG
Line 827  while (0)
Line 901  while (0)
 #  define YYFPRINTF fprintf  #  define YYFPRINTF fprintf
 # endif  # endif
   
 # define YYDPRINTF(Args)                        \  # define YYDPRINTF(Args)                        \
 do {                                            \  do {                                            \
   if (yydebug)                                  \    if (yydebug)                                  \
     YYFPRINTF Args;                             \      YYFPRINTF Args;                             \
 } while (0)  } while (YYID (0))
   
 /* This macro is provided for backward compatibility. */  # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                    \
 #ifndef YY_LOCATION_PRINT  do {                                                                      \
 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)    if (yydebug)                                                            \
 #endif      {                                                                     \
         YYFPRINTF (stderr, "%s ", Title);                                   \
         yy_symbol_print (stderr,                                            \
                     Type, Value); \
         YYFPRINTF (stderr, "\n");                                           \
       }                                                                     \
   } while (YYID (0))
   
 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                    \  
 do {                                                                      \  
   if (yydebug)                                                            \  
     {                                                                     \  
       YYFPRINTF (stderr, "%s ", Title);                                   \  
       yy_symbol_print (stderr,                                            \  
                   Type, Value); \  
       YYFPRINTF (stderr, "\n");                                           \  
     }                                                                     \  
 } while (0)  
   
   /*--------------------------------.
   | Print this symbol on YYOUTPUT.  |
   `--------------------------------*/
   
 /*----------------------------------------.  /*ARGSUSED*/
 | Print this symbol's value on YYOUTPUT.  |  #if (defined __STDC__ || defined __C99__FUNC__ \
 `----------------------------------------*/       || defined __cplusplus || defined _MSC_VER)
   
 static void  static void
 yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)  yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
   #else
   static void
   yy_symbol_value_print (yyoutput, yytype, yyvaluep)
       FILE *yyoutput;
       int yytype;
       YYSTYPE const * const yyvaluep;
   #endif
 {  {
   FILE *yyo = yyoutput;  
   YYUSE (yyo);  
   if (!yyvaluep)    if (!yyvaluep)
     return;      return;
 # ifdef YYPRINT  # ifdef YYPRINT
   if (yytype < YYNTOKENS)    if (yytype < YYNTOKENS)
     YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);      YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
   # else
     YYUSE (yyoutput);
 # endif  # endif
   YYUSE (yytype);    switch (yytype)
       {
         default:
           break;
       }
 }  }
   
   
Line 874  yy_symbol_value_print (FILE *yyoutput, i
Line 956  yy_symbol_value_print (FILE *yyoutput, i
 | Print this symbol on YYOUTPUT.  |  | Print this symbol on YYOUTPUT.  |
 `--------------------------------*/  `--------------------------------*/
   
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 static void  static void
 yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)  yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
   #else
   static void
   yy_symbol_print (yyoutput, yytype, yyvaluep)
       FILE *yyoutput;
       int yytype;
       YYSTYPE const * const yyvaluep;
   #endif
 {  {
   YYFPRINTF (yyoutput, "%s %s (",    if (yytype < YYNTOKENS)
              yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);      YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
     else
       YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
   
   yy_symbol_value_print (yyoutput, yytype, yyvaluep);    yy_symbol_value_print (yyoutput, yytype, yyvaluep);
   YYFPRINTF (yyoutput, ")");    YYFPRINTF (yyoutput, ")");
Line 889  yy_symbol_print (FILE *yyoutput, int yyt
Line 982  yy_symbol_print (FILE *yyoutput, int yyt
 | TOP (included).                                                   |  | TOP (included).                                                   |
 `------------------------------------------------------------------*/  `------------------------------------------------------------------*/
   
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
   static void
   yy_stack_print (yytype_int16 *bottom, yytype_int16 *top)
   #else
 static void  static void
 yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)  yy_stack_print (bottom, top)
       yytype_int16 *bottom;
       yytype_int16 *top;
   #endif
 {  {
   YYFPRINTF (stderr, "Stack now");    YYFPRINTF (stderr, "Stack now");
   for (; yybottom <= yytop; yybottom++)    for (; bottom <= top; ++bottom)
     {      YYFPRINTF (stderr, " %d", *bottom);
       int yybot = *yybottom;  
       YYFPRINTF (stderr, " %d", yybot);  
     }  
   YYFPRINTF (stderr, "\n");    YYFPRINTF (stderr, "\n");
 }  }
   
 # define YY_STACK_PRINT(Bottom, Top)                            \  # define YY_STACK_PRINT(Bottom, Top)                            \
 do {                                                            \  do {                                                            \
   if (yydebug)                                                  \    if (yydebug)                                                  \
     yy_stack_print ((Bottom), (Top));                           \      yy_stack_print ((Bottom), (Top));                           \
 } while (0)  } while (YYID (0))
   
   
 /*------------------------------------------------.  /*------------------------------------------------.
 | Report that the YYRULE is going to be reduced.  |  | Report that the YYRULE is going to be reduced.  |
 `------------------------------------------------*/  `------------------------------------------------*/
   
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 static void  static void
 yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule)  yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
   #else
   static void
   yy_reduce_print (yyvsp, yyrule)
       YYSTYPE *yyvsp;
       int yyrule;
   #endif
 {  {
   unsigned long int yylno = yyrline[yyrule];  
   int yynrhs = yyr2[yyrule];    int yynrhs = yyr2[yyrule];
   int yyi;    int yyi;
     unsigned long int yylno = yyrline[yyrule];
   YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",    YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
              yyrule - 1, yylno);               yyrule - 1, yylno);
   /* The symbols being reduced.  */    /* The symbols being reduced.  */
   for (yyi = 0; yyi < yynrhs; yyi++)    for (yyi = 0; yyi < yynrhs; yyi++)
     {      {
       YYFPRINTF (stderr, "   $%d = ", yyi + 1);        fprintf (stderr, "   $%d = ", yyi + 1);
       yy_symbol_print (stderr,        yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
                        yystos[yyssp[yyi + 1 - yynrhs]],                         &(yyvsp[(yyi + 1) - (yynrhs)])
                        &(yyvsp[(yyi + 1) - (yynrhs)])                                         );
                                               );        fprintf (stderr, "\n");
       YYFPRINTF (stderr, "\n");  
     }      }
 }  }
   
 # define YY_REDUCE_PRINT(Rule)          \  # define YY_REDUCE_PRINT(Rule)          \
 do {                                    \  do {                                    \
   if (yydebug)                          \    if (yydebug)                          \
     yy_reduce_print (yyssp, yyvsp, Rule); \      yy_reduce_print (yyvsp, Rule); \
 } while (0)  } while (YYID (0))
   
 /* Nonzero means print parse trace.  It is left uninitialized so that  /* Nonzero means print parse trace.  It is left uninitialized so that
    multiple parsers can coexist.  */     multiple parsers can coexist.  */
Line 950  int yydebug;
Line 1055  int yydebug;
   
   
 /* YYINITDEPTH -- initial size of the parser's stacks.  */  /* YYINITDEPTH -- initial size of the parser's stacks.  */
 #ifndef YYINITDEPTH  #ifndef YYINITDEPTH
 # define YYINITDEPTH 200  # define YYINITDEPTH 200
 #endif  #endif
   
Line 965  int yydebug;
Line 1070  int yydebug;
 # define YYMAXDEPTH 10000  # define YYMAXDEPTH 10000
 #endif  #endif
   
   
   
 #if YYERROR_VERBOSE  #if YYERROR_VERBOSE
   
Line 973  int yydebug;
Line 1079  int yydebug;
 #   define yystrlen strlen  #   define yystrlen strlen
 #  else  #  else
 /* Return the length of YYSTR.  */  /* Return the length of YYSTR.  */
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 static YYSIZE_T  static YYSIZE_T
 yystrlen (const char *yystr)  yystrlen (const char *yystr)
   #else
   static YYSIZE_T
   yystrlen (yystr)
       const char *yystr;
   #endif
 {  {
   YYSIZE_T yylen;    YYSIZE_T yylen;
   for (yylen = 0; yystr[yylen]; yylen++)    for (yylen = 0; yystr[yylen]; yylen++)
Line 990  yystrlen (const char *yystr)
Line 1103  yystrlen (const char *yystr)
 #  else  #  else
 /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in  /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
    YYDEST.  */     YYDEST.  */
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 static char *  static char *
 yystpcpy (char *yydest, const char *yysrc)  yystpcpy (char *yydest, const char *yysrc)
   #else
   static char *
   yystpcpy (yydest, yysrc)
       char *yydest;
       const char *yysrc;
   #endif
 {  {
   char *yyd = yydest;    char *yyd = yydest;
   const char *yys = yysrc;    const char *yys = yysrc;
Line 1021  yytnamerr (char *yyres, const char *yyst
Line 1142  yytnamerr (char *yyres, const char *yyst
       char const *yyp = yystr;        char const *yyp = yystr;
   
       for (;;)        for (;;)
         switch (*++yyp)          switch (*++yyp)
           {            {
           case '\'':            case '\'':
           case ',':            case ',':
             goto do_not_strip_quotes;              goto do_not_strip_quotes;
   
           case '\\':            case '\\':
             if (*++yyp != '\\')              if (*++yyp != '\\')
               goto do_not_strip_quotes;                goto do_not_strip_quotes;
             /* Fall through.  */              /* Fall through.  */
           default:            default:
             if (yyres)              if (yyres)
               yyres[yyn] = *yyp;                yyres[yyn] = *yyp;
             yyn++;              yyn++;
             break;              break;
   
           case '"':            case '"':
             if (yyres)              if (yyres)
               yyres[yyn] = '\0';                yyres[yyn] = '\0';
             return yyn;              return yyn;
           }            }
     do_not_strip_quotes: ;      do_not_strip_quotes: ;
     }      }
   
Line 1052  yytnamerr (char *yyres, const char *yyst
Line 1173  yytnamerr (char *yyres, const char *yyst
 }  }
 # endif  # endif
   
 /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message  /* Copy into YYRESULT an error message about the unexpected token
    about the unexpected token YYTOKEN for the state stack whose top is     YYCHAR while in state YYSTATE.  Return the number of bytes copied,
    YYSSP.     including the terminating null byte.  If YYRESULT is null, do not
      copy anything; just return the number of bytes that would be
    Return 0 if *YYMSG was successfully written.  Return 1 if *YYMSG is     copied.  As a special case, return 0 if an ordinary "syntax error"
    not large enough to hold the message.  In that case, also set     message will do.  Return YYSIZE_MAXIMUM if overflow occurs during
    *YYMSG_ALLOC to the required number of bytes.  Return 2 if the     size calculation.  */
    required number of bytes is too large to store.  */  static YYSIZE_T
 static int  yysyntax_error (char *yyresult, int yystate, int yychar)
 yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,  
                 yytype_int16 *yyssp, int yytoken)  
 {  {
   YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);    int yyn = yypact[yystate];
   YYSIZE_T yysize = yysize0;  
   enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };  
   /* Internationalized format string. */  
   const char *yyformat = YY_NULL;  
   /* Arguments of yyformat. */  
   char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];  
   /* Number of reported tokens (one for the "unexpected", one per  
      "expected"). */  
   int yycount = 0;  
   
   /* There are many possibilities here to consider:  
      - If this state is a consistent state with a default action, then  
        the only way this function was invoked is if the default action  
        is an error action.  In that case, don't check for expected  
        tokens because there are none.  
      - The only way there can be no lookahead present (in yychar) is if  
        this state is a consistent state with a default action.  Thus,  
        detecting the absence of a lookahead is sufficient to determine  
        that there is no unexpected or expected token to report.  In that  
        case, just report a simple "syntax error".  
      - Don't assume there isn't a lookahead just because this state is a  
        consistent state with a default action.  There might have been a  
        previous inconsistent state, consistent state with a non-default  
        action, or user semantic action that manipulated yychar.  
      - Of course, the expected token list depends on states to have  
        correct lookahead information, and it depends on the parser not  
        to perform extra reductions after fetching a lookahead from the  
        scanner and before detecting a syntax error.  Thus, state merging  
        (from LALR or IELR) and default reductions corrupt the expected  
        token list.  However, the list is correct for canonical LR with  
        one exception: it will still contain any token that will not be  
        accepted due to an error action in a later state.  
   */  
   if (yytoken != YYEMPTY)  
     {  
       int yyn = yypact[*yyssp];  
       yyarg[yycount++] = yytname[yytoken];  
       if (!yypact_value_is_default (yyn))  
         {  
           /* Start YYX at -YYN if negative to avoid negative indexes in  
              YYCHECK.  In other words, skip the first -YYN actions for  
              this state because they are default actions.  */  
           int yyxbegin = yyn < 0 ? -yyn : 0;  
           /* Stay within bounds of both yycheck and yytname.  */  
           int yychecklim = YYLAST - yyn + 1;  
           int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;  
           int yyx;  
   
           for (yyx = yyxbegin; yyx < yyxend; ++yyx)  
             if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR  
                 && !yytable_value_is_error (yytable[yyx + yyn]))  
               {  
                 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)  
                   {  
                     yycount = 1;  
                     yysize = yysize0;  
                     break;  
                   }  
                 yyarg[yycount++] = yytname[yyx];  
                 {  
                   YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);  
                   if (! (yysize <= yysize1  
                          && yysize1 <= YYSTACK_ALLOC_MAXIMUM))  
                     return 2;  
                   yysize = yysize1;  
                 }  
               }  
         }  
     }  
   
   switch (yycount)    if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
       return 0;
     else
     {      {
 # define YYCASE_(N, S)                      \        int yytype = YYTRANSLATE (yychar);
       case N:                               \        YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
         yyformat = S;                       \        YYSIZE_T yysize = yysize0;
       break        YYSIZE_T yysize1;
       YYCASE_(0, YY_("syntax error"));        int yysize_overflow = 0;
       YYCASE_(1, YY_("syntax error, unexpected %s"));        enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
       YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));        char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
       YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));        int yyx;
       YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));  
       YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));  # if 0
 # undef YYCASE_        /* This is so xgettext sees the translatable formats that are
     }           constructed on the fly.  */
         YY_("syntax error, unexpected %s");
         YY_("syntax error, unexpected %s, expecting %s");
         YY_("syntax error, unexpected %s, expecting %s or %s");
         YY_("syntax error, unexpected %s, expecting %s or %s or %s");
         YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
   # endif
         char *yyfmt;
         char const *yyf;
         static char const yyunexpected[] = "syntax error, unexpected %s";
         static char const yyexpecting[] = ", expecting %s";
         static char const yyor[] = " or %s";
         char yyformat[sizeof yyunexpected
                       + sizeof yyexpecting - 1
                       + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
                          * (sizeof yyor - 1))];
         char const *yyprefix = yyexpecting;
   
         /* Start YYX at -YYN if negative to avoid negative indexes in
            YYCHECK.  */
         int yyxbegin = yyn < 0 ? -yyn : 0;
   
         /* Stay within bounds of both yycheck and yytname.  */
         int yychecklim = YYLAST - yyn + 1;
         int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
         int yycount = 1;
   
         yyarg[0] = yytname[yytype];
         yyfmt = yystpcpy (yyformat, yyunexpected);
   
         for (yyx = yyxbegin; yyx < yyxend; ++yyx)
           if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
             {
               if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
                 {
                   yycount = 1;
                   yysize = yysize0;
                   yyformat[sizeof yyunexpected - 1] = '\0';
                   break;
                 }
               yyarg[yycount++] = yytname[yyx];
               yysize1 = yysize + yytnamerr (0, yytname[yyx]);
               yysize_overflow |= (yysize1 < yysize);
               yysize = yysize1;
               yyfmt = yystpcpy (yyfmt, yyprefix);
               yyprefix = yyor;
             }
   
   {        yyf = YY_(yyformat);
     YYSIZE_T yysize1 = yysize + yystrlen (yyformat);        yysize1 = yysize + yystrlen (yyf);
     if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))        yysize_overflow |= (yysize1 < yysize);
       return 2;        yysize = yysize1;
     yysize = yysize1;  
   }        if (yysize_overflow)
           return YYSIZE_MAXIMUM;
   if (*yymsg_alloc < yysize)  
     {        if (yyresult)
       *yymsg_alloc = 2 * yysize;          {
       if (! (yysize <= *yymsg_alloc            /* Avoid sprintf, as that infringes on the user's name space.
              && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))               Don't have undefined behavior even if the translation
         *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;               produced a string with the wrong number of "%s"s.  */
       return 1;            char *yyp = yyresult;
     }            int yyi = 0;
             while ((*yyp = *yyf) != '\0')
   /* Avoid sprintf, as that infringes on the user's name space.              {
      Don't have undefined behavior even if the translation                if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
      produced a string with the wrong number of "%s"s.  */                  {
   {                    yyp += yytnamerr (yyp, yyarg[yyi++]);
     char *yyp = *yymsg;                    yyf += 2;
     int yyi = 0;                  }
     while ((*yyp = *yyformat) != '\0')                else
       if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)                  {
         {                    yyp++;
           yyp += yytnamerr (yyp, yyarg[yyi++]);                    yyf++;
           yyformat += 2;                  }
         }              }
       else          }
         {        return yysize;
           yyp++;      }
           yyformat++;  
         }  
   }  
   return 0;  
 }  }
 #endif /* YYERROR_VERBOSE */  #endif /* YYERROR_VERBOSE */
   
   
 /*-----------------------------------------------.  /*-----------------------------------------------.
 | Release the memory associated to this symbol.  |  | Release the memory associated to this symbol.  |
 `-----------------------------------------------*/  `-----------------------------------------------*/
   
   /*ARGSUSED*/
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 static void  static void
 yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)  yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
   #else
   static void
   yydestruct (yymsg, yytype, yyvaluep)
       const char *yymsg;
       int yytype;
       YYSTYPE *yyvaluep;
   #endif
 {  {
   YYUSE (yyvaluep);    YYUSE (yyvaluep);
   
   if (!yymsg)    if (!yymsg)
     yymsg = "Deleting";      yymsg = "Deleting";
   YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);    YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
   
   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN    switch (yytype)
   YYUSE (yytype);      {
   YY_IGNORE_MAYBE_UNINITIALIZED_END  
         default:
           break;
       }
 }  }
   
   
   /* Prevent warnings from -Wmissing-prototypes.  */
   
   #ifdef YYPARSE_PARAM
   #if defined __STDC__ || defined __cplusplus
   int yyparse (void *YYPARSE_PARAM);
   #else
   int yyparse ();
   #endif
   #else /* ! YYPARSE_PARAM */
   #if defined __STDC__ || defined __cplusplus
   int yyparse (void);
   #else
   int yyparse ();
   #endif
   #endif /* ! YYPARSE_PARAM */
   
   
   
 /* The lookahead symbol.  */  /* The look-ahead symbol.  */
 int yychar;  int yychar;
   
 /* The semantic value of the lookahead symbol.  */  /* The semantic value of the look-ahead symbol.  */
 YYSTYPE yylval;  YYSTYPE yylval;
   
 /* Number of syntax errors so far.  */  /* Number of syntax errors so far.  */
 int yynerrs;  int yynerrs;
   
   
   
 /*----------.  /*----------.
 | yyparse.  |  | yyparse.  |
 `----------*/  `----------*/
   
   #ifdef YYPARSE_PARAM
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
   int
   yyparse (void *YYPARSE_PARAM)
   #else
   int
   yyparse (YYPARSE_PARAM)
       void *YYPARSE_PARAM;
   #endif
   #else /* ! YYPARSE_PARAM */
   #if (defined __STDC__ || defined __C99__FUNC__ \
        || defined __cplusplus || defined _MSC_VER)
 int  int
 yyparse (void)  yyparse (void)
 {  #else
     int yystate;  int
     /* Number of tokens to shift before error messages enabled.  */  yyparse ()
     int yyerrstatus;  
   
     /* The stacks and their tools:  
        'yyss': related to states.  
        'yyvs': related to semantic values.  
   
        Refer to the stacks through separate pointers, to allow yyoverflow  
        to reallocate them elsewhere.  */  
   
     /* The state stack.  */  
     yytype_int16 yyssa[YYINITDEPTH];  
     yytype_int16 *yyss;  
     yytype_int16 *yyssp;  
   
     /* The semantic value stack.  */  
     YYSTYPE yyvsa[YYINITDEPTH];  
     YYSTYPE *yyvs;  
     YYSTYPE *yyvsp;  
   
     YYSIZE_T yystacksize;  
   
   #endif
   #endif
   {
   
     int yystate;
   int yyn;    int yyn;
   int yyresult;    int yyresult;
   /* Lookahead token as an internal (translated) token number.  */    /* Number of tokens to shift before error messages enabled.  */
     int yyerrstatus;
     /* Look-ahead token as an internal (translated) token number.  */
   int yytoken = 0;    int yytoken = 0;
   /* The variables used to return semantic value and location from the  
      action routines.  */  
   YYSTYPE yyval;  
   
 #if YYERROR_VERBOSE  #if YYERROR_VERBOSE
   /* Buffer for error messages, and its allocated size.  */    /* Buffer for error messages, and its allocated size.  */
   char yymsgbuf[128];    char yymsgbuf[128];
Line 1262  yyparse (void)
Line 1385  yyparse (void)
   YYSIZE_T yymsg_alloc = sizeof yymsgbuf;    YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
 #endif  #endif
   
     /* Three stacks and their tools:
        `yyss': related to states,
        `yyvs': related to semantic values,
        `yyls': related to locations.
   
        Refer to the stacks thru separate pointers, to allow yyoverflow
        to reallocate them elsewhere.  */
   
     /* The state stack.  */
     yytype_int16 yyssa[YYINITDEPTH];
     yytype_int16 *yyss = yyssa;
     yytype_int16 *yyssp;
   
     /* The semantic value stack.  */
     YYSTYPE yyvsa[YYINITDEPTH];
     YYSTYPE *yyvs = yyvsa;
     YYSTYPE *yyvsp;
   
   
   
 #define YYPOPSTACK(N)   (yyvsp -= (N), yyssp -= (N))  #define YYPOPSTACK(N)   (yyvsp -= (N), yyssp -= (N))
   
     YYSIZE_T yystacksize = YYINITDEPTH;
   
     /* The variables used to return semantic value and location from the
        action routines.  */
     YYSTYPE yyval;
   
   
   /* The number of symbols on the RHS of the reduced rule.    /* The number of symbols on the RHS of the reduced rule.
      Keep to zero when no symbol should be popped.  */       Keep to zero when no symbol should be popped.  */
   int yylen = 0;    int yylen = 0;
   
   yyssp = yyss = yyssa;  
   yyvsp = yyvs = yyvsa;  
   yystacksize = YYINITDEPTH;  
   
   YYDPRINTF ((stderr, "Starting parse\n"));    YYDPRINTF ((stderr, "Starting parse\n"));
   
   yystate = 0;    yystate = 0;
   yyerrstatus = 0;    yyerrstatus = 0;
   yynerrs = 0;    yynerrs = 0;
   yychar = YYEMPTY; /* Cause a token to be read.  */    yychar = YYEMPTY;             /* Cause a token to be read.  */
   
     /* Initialize stack pointers.
        Waste one element of value and location stack
        so that they stay on the same level as the state stack.
        The wasted elements are never initialized.  */
   
     yyssp = yyss;
     yyvsp = yyvs;
   
   goto yysetstate;    goto yysetstate;
   
 /*------------------------------------------------------------.  /*------------------------------------------------------------.
Line 1298  yyparse (void)
Line 1453  yyparse (void)
   
 #ifdef yyoverflow  #ifdef yyoverflow
       {        {
         /* Give user a chance to reallocate the stack.  Use copies of          /* Give user a chance to reallocate the stack.  Use copies of
            these so that the &'s don't force the real ones into             these so that the &'s don't force the real ones into
            memory.  */             memory.  */
         YYSTYPE *yyvs1 = yyvs;          YYSTYPE *yyvs1 = yyvs;
         yytype_int16 *yyss1 = yyss;          yytype_int16 *yyss1 = yyss;
   
         /* Each stack pointer address is followed by the size of the  
            data in use in that stack, in bytes.  This used to be a          /* Each stack pointer address is followed by the size of the
            conditional around just the two extra args, but that might             data in use in that stack, in bytes.  This used to be a
            be undefined if yyoverflow is a macro.  */             conditional around just the two extra args, but that might
         yyoverflow (YY_("memory exhausted"),             be undefined if yyoverflow is a macro.  */
                     &yyss1, yysize * sizeof (*yyssp),          yyoverflow (YY_("memory exhausted"),
                     &yyvs1, yysize * sizeof (*yyvsp),                      &yyss1, yysize * sizeof (*yyssp),
                     &yystacksize);                      &yyvs1, yysize * sizeof (*yyvsp),
   
         yyss = yyss1;                      &yystacksize);
         yyvs = yyvs1;  
           yyss = yyss1;
           yyvs = yyvs1;
       }        }
 #else /* no yyoverflow */  #else /* no yyoverflow */
 # ifndef YYSTACK_RELOCATE  # ifndef YYSTACK_RELOCATE
Line 1322  yyparse (void)
Line 1479  yyparse (void)
 # else  # else
       /* Extend the stack our own way.  */        /* Extend the stack our own way.  */
       if (YYMAXDEPTH <= yystacksize)        if (YYMAXDEPTH <= yystacksize)
         goto yyexhaustedlab;          goto yyexhaustedlab;
       yystacksize *= 2;        yystacksize *= 2;
       if (YYMAXDEPTH < yystacksize)        if (YYMAXDEPTH < yystacksize)
         yystacksize = YYMAXDEPTH;          yystacksize = YYMAXDEPTH;
   
       {        {
         yytype_int16 *yyss1 = yyss;          yytype_int16 *yyss1 = yyss;
         union yyalloc *yyptr =          union yyalloc *yyptr =
           (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));            (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
         if (! yyptr)          if (! yyptr)
           goto yyexhaustedlab;            goto yyexhaustedlab;
         YYSTACK_RELOCATE (yyss_alloc, yyss);          YYSTACK_RELOCATE (yyss);
         YYSTACK_RELOCATE (yyvs_alloc, yyvs);          YYSTACK_RELOCATE (yyvs);
   
 #  undef YYSTACK_RELOCATE  #  undef YYSTACK_RELOCATE
         if (yyss1 != yyssa)          if (yyss1 != yyssa)
           YYSTACK_FREE (yyss1);            YYSTACK_FREE (yyss1);
       }        }
 # endif  # endif
 #endif /* no yyoverflow */  #endif /* no yyoverflow */
Line 1345  yyparse (void)
Line 1503  yyparse (void)
       yyssp = yyss + yysize - 1;        yyssp = yyss + yysize - 1;
       yyvsp = yyvs + yysize - 1;        yyvsp = yyvs + yysize - 1;
   
   
       YYDPRINTF ((stderr, "Stack size increased to %lu\n",        YYDPRINTF ((stderr, "Stack size increased to %lu\n",
                   (unsigned long int) yystacksize));                    (unsigned long int) yystacksize));
   
       if (yyss + yystacksize - 1 <= yyssp)        if (yyss + yystacksize - 1 <= yyssp)
         YYABORT;          YYABORT;
     }      }
   
   YYDPRINTF ((stderr, "Entering state %d\n", yystate));    YYDPRINTF ((stderr, "Entering state %d\n", yystate));
   
   if (yystate == YYFINAL)  
     YYACCEPT;  
   
   goto yybackup;    goto yybackup;
   
 /*-----------.  /*-----------.
Line 1365  yyparse (void)
Line 1521  yyparse (void)
 yybackup:  yybackup:
   
   /* Do appropriate processing given the current state.  Read a    /* Do appropriate processing given the current state.  Read a
      lookahead token if we need one and don't already have one.  */       look-ahead token if we need one and don't already have one.  */
   
   /* First try to decide what to do without reference to lookahead token.  */    /* First try to decide what to do without reference to look-ahead token.  */
   yyn = yypact[yystate];    yyn = yypact[yystate];
   if (yypact_value_is_default (yyn))    if (yyn == YYPACT_NINF)
     goto yydefault;      goto yydefault;
   
   /* Not known => get a lookahead token if don't already have one.  */    /* Not known => get a look-ahead token if don't already have one.  */
   
   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */    /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol.  */
   if (yychar == YYEMPTY)    if (yychar == YYEMPTY)
     {      {
       YYDPRINTF ((stderr, "Reading a token: "));        YYDPRINTF ((stderr, "Reading a token: "));
       yychar = yylex ();        yychar = YYLEX;
     }      }
   
   if (yychar <= YYEOF)    if (yychar <= YYEOF)
Line 1400  yybackup:
Line 1556  yybackup:
   yyn = yytable[yyn];    yyn = yytable[yyn];
   if (yyn <= 0)    if (yyn <= 0)
     {      {
       if (yytable_value_is_error (yyn))        if (yyn == 0 || yyn == YYTABLE_NINF)
         goto yyerrlab;          goto yyerrlab;
       yyn = -yyn;        yyn = -yyn;
       goto yyreduce;        goto yyreduce;
     }      }
   
     if (yyn == YYFINAL)
       YYACCEPT;
   
   /* Count tokens shifted since error; after three, turn off error    /* Count tokens shifted since error; after three, turn off error
      status.  */       status.  */
   if (yyerrstatus)    if (yyerrstatus)
     yyerrstatus--;      yyerrstatus--;
   
   /* Shift the lookahead token.  */    /* Shift the look-ahead token.  */
   YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);    YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
   
   /* Discard the shifted token.  */    /* Discard the shifted token unless it is eof.  */
   yychar = YYEMPTY;    if (yychar != YYEOF)
       yychar = YYEMPTY;
   
   yystate = yyn;    yystate = yyn;
   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN  
   *++yyvsp = yylval;    *++yyvsp = yylval;
   YY_IGNORE_MAYBE_UNINITIALIZED_END  
   
   goto yynewstate;    goto yynewstate;
   
Line 1443  yyreduce:
Line 1601  yyreduce:
   yylen = yyr2[yyn];    yylen = yyr2[yyn];
   
   /* If YYLEN is nonzero, implement the default value of the action:    /* If YYLEN is nonzero, implement the default value of the action:
      '$$ = $1'.       `$$ = $1'.
   
      Otherwise, the following line sets YYVAL to garbage.       Otherwise, the following line sets YYVAL to garbage.
      This behavior is undocumented and Bison       This behavior is undocumented and Bison
Line 1457  yyreduce:
Line 1615  yyreduce:
   switch (yyn)    switch (yyn)
     {      {
         case 4:          case 4:
 #line 143 "deffilep.y" /* yacc.c:1661  */  #line 143 "deffilep.y"
     { def_image_name ((yyvsp[-1].id), (yyvsp[0].vma), 0); }      { def_image_name ((yyvsp[(2) - (3)].id), (yyvsp[(3) - (3)].vma), 0); }
 #line 1463 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 5:    case 5:
 #line 144 "deffilep.y" /* yacc.c:1661  */  #line 144 "deffilep.y"
     { def_image_name ((yyvsp[-1].id), (yyvsp[0].vma), 1); }      { def_image_name ((yyvsp[(2) - (3)].id), (yyvsp[(3) - (3)].vma), 1); }
 #line 1469 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 6:    case 6:
 #line 145 "deffilep.y" /* yacc.c:1661  */  #line 145 "deffilep.y"
     { def_description ((yyvsp[0].id));}      { def_description ((yyvsp[(2) - (2)].id));}
 #line 1475 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 7:    case 7:
 #line 146 "deffilep.y" /* yacc.c:1661  */  #line 146 "deffilep.y"
     { def_stacksize ((yyvsp[-1].number), (yyvsp[0].number));}      { def_stacksize ((yyvsp[(2) - (3)].number), (yyvsp[(3) - (3)].number));}
 #line 1481 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 8:    case 8:
 #line 147 "deffilep.y" /* yacc.c:1661  */  #line 147 "deffilep.y"
     { def_heapsize ((yyvsp[-1].number), (yyvsp[0].number));}      { def_heapsize ((yyvsp[(2) - (3)].number), (yyvsp[(3) - (3)].number));}
 #line 1487 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 9:    case 9:
 #line 148 "deffilep.y" /* yacc.c:1661  */  #line 148 "deffilep.y"
     { def_section ("CODE", (yyvsp[0].number));}      { def_section ("CODE", (yyvsp[(2) - (2)].number));}
 #line 1493 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 10:    case 10:
 #line 149 "deffilep.y" /* yacc.c:1661  */  #line 149 "deffilep.y"
     { def_section ("DATA", (yyvsp[0].number));}      { def_section ("DATA", (yyvsp[(2) - (2)].number));}
 #line 1499 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 14:    case 14:
 #line 153 "deffilep.y" /* yacc.c:1661  */  #line 153 "deffilep.y"
     { def_version ((yyvsp[0].number), 0);}      { def_version ((yyvsp[(2) - (2)].number), 0);}
 #line 1505 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 15:    case 15:
 #line 154 "deffilep.y" /* yacc.c:1661  */  #line 154 "deffilep.y"
     { def_version ((yyvsp[-2].number), (yyvsp[0].number));}      { def_version ((yyvsp[(2) - (4)].number), (yyvsp[(4) - (4)].number));}
 #line 1511 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 16:    case 16:
 #line 155 "deffilep.y" /* yacc.c:1661  */  #line 155 "deffilep.y"
     { def_directive ((yyvsp[0].id));}      { def_directive ((yyvsp[(2) - (2)].id));}
 #line 1517 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 17:    case 17:
 #line 156 "deffilep.y" /* yacc.c:1661  */  #line 156 "deffilep.y"
     { def_aligncomm ((yyvsp[-2].id), (yyvsp[0].number));}      { def_aligncomm ((yyvsp[(2) - (4)].id), (yyvsp[(4) - (4)].number));}
 #line 1523 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 21:    case 21:
 #line 171 "deffilep.y" /* yacc.c:1661  */  #line 171 "deffilep.y"
     { def_exports ((yyvsp[-6].id), (yyvsp[-5].id), (yyvsp[-4].number), (yyvsp[-2].number), (yyvsp[0].id)); }      { def_exports ((yyvsp[(1) - (7)].id), (yyvsp[(2) - (7)].id), (yyvsp[(3) - (7)].number), (yyvsp[(5) - (7)].number), (yyvsp[(7) - (7)].id)); }
 #line 1529 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 22:    case 22:
 #line 177 "deffilep.y" /* yacc.c:1661  */  #line 177 "deffilep.y"
     { (yyval.number) = (yyvsp[-2].number) | (yyvsp[0].number); }      { (yyval.number) = (yyvsp[(1) - (3)].number) | (yyvsp[(3) - (3)].number); }
 #line 1535 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 23:    case 23:
 #line 178 "deffilep.y" /* yacc.c:1661  */  #line 178 "deffilep.y"
     { (yyval.number) = 0; }      { (yyval.number) = 0; }
 #line 1541 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 24:    case 24:
 #line 181 "deffilep.y" /* yacc.c:1661  */  #line 181 "deffilep.y"
     { (yyval.number) = 1; }      { (yyval.number) = 1; }
 #line 1547 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 25:    case 25:
 #line 182 "deffilep.y" /* yacc.c:1661  */  #line 182 "deffilep.y"
     { (yyval.number) = 1; }      { (yyval.number) = 1; }
 #line 1553 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 26:    case 26:
 #line 183 "deffilep.y" /* yacc.c:1661  */  #line 183 "deffilep.y"
     { (yyval.number) = 2; }      { (yyval.number) = 2; }
 #line 1559 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 27:    case 27:
 #line 184 "deffilep.y" /* yacc.c:1661  */  #line 184 "deffilep.y"
     { (yyval.number) = 2; }      { (yyval.number) = 2; }
 #line 1565 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 28:    case 28:
 #line 185 "deffilep.y" /* yacc.c:1661  */  #line 185 "deffilep.y"
     { (yyval.number) = 4; }      { (yyval.number) = 4; }
 #line 1571 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 29:    case 29:
 #line 186 "deffilep.y" /* yacc.c:1661  */  #line 186 "deffilep.y"
     { (yyval.number) = 4; }      { (yyval.number) = 4; }
 #line 1577 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 30:    case 30:
 #line 187 "deffilep.y" /* yacc.c:1661  */  #line 187 "deffilep.y"
     { (yyval.number) = 8; }      { (yyval.number) = 8; }
 #line 1583 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 31:    case 31:
 #line 188 "deffilep.y" /* yacc.c:1661  */  #line 188 "deffilep.y"
     { (yyval.number) = 8; }      { (yyval.number) = 8; }
 #line 1589 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 34:    case 34:
 #line 197 "deffilep.y" /* yacc.c:1661  */  #line 197 "deffilep.y"
     { def_import ((yyvsp[-7].id), (yyvsp[-5].id), (yyvsp[-3].id), (yyvsp[-1].id), -1, (yyvsp[0].id)); }      { def_import ((yyvsp[(1) - (8)].id), (yyvsp[(3) - (8)].id), (yyvsp[(5) - (8)].id), (yyvsp[(7) - (8)].id), -1, (yyvsp[(8) - (8)].id)); }
 #line 1595 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 35:    case 35:
 #line 199 "deffilep.y" /* yacc.c:1661  */  #line 199 "deffilep.y"
     { def_import ((yyvsp[-7].id), (yyvsp[-5].id), (yyvsp[-3].id),  0, (yyvsp[-1].number), (yyvsp[0].id)); }      { def_import ((yyvsp[(1) - (8)].id), (yyvsp[(3) - (8)].id), (yyvsp[(5) - (8)].id),  0, (yyvsp[(7) - (8)].number), (yyvsp[(8) - (8)].id)); }
 #line 1601 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 36:    case 36:
 #line 201 "deffilep.y" /* yacc.c:1661  */  #line 201 "deffilep.y"
     { def_import ((yyvsp[-5].id), (yyvsp[-3].id),  0, (yyvsp[-1].id), -1, (yyvsp[0].id)); }      { def_import ((yyvsp[(1) - (6)].id), (yyvsp[(3) - (6)].id),  0, (yyvsp[(5) - (6)].id), -1, (yyvsp[(6) - (6)].id)); }
 #line 1607 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 37:    case 37:
 #line 203 "deffilep.y" /* yacc.c:1661  */  #line 203 "deffilep.y"
     { def_import ((yyvsp[-5].id), (yyvsp[-3].id),  0,  0, (yyvsp[-1].number), (yyvsp[0].id)); }      { def_import ((yyvsp[(1) - (6)].id), (yyvsp[(3) - (6)].id),  0,  0, (yyvsp[(5) - (6)].number), (yyvsp[(6) - (6)].id)); }
 #line 1613 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 38:    case 38:
 #line 205 "deffilep.y" /* yacc.c:1661  */  #line 205 "deffilep.y"
     { def_import( 0, (yyvsp[-5].id), (yyvsp[-3].id), (yyvsp[-1].id), -1, (yyvsp[0].id)); }      { def_import( 0, (yyvsp[(1) - (6)].id), (yyvsp[(3) - (6)].id), (yyvsp[(5) - (6)].id), -1, (yyvsp[(6) - (6)].id)); }
 #line 1619 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 39:    case 39:
 #line 207 "deffilep.y" /* yacc.c:1661  */  #line 207 "deffilep.y"
     { def_import ( 0, (yyvsp[-3].id),  0, (yyvsp[-1].id), -1, (yyvsp[0].id)); }      { def_import ( 0, (yyvsp[(1) - (4)].id),  0, (yyvsp[(3) - (4)].id), -1, (yyvsp[(4) - (4)].id)); }
 #line 1625 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 42:    case 42:
 #line 216 "deffilep.y" /* yacc.c:1661  */  #line 216 "deffilep.y"
     { def_section ((yyvsp[-1].id), (yyvsp[0].number));}      { def_section ((yyvsp[(1) - (2)].id), (yyvsp[(2) - (2)].number));}
 #line 1631 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 43:    case 43:
 #line 217 "deffilep.y" /* yacc.c:1661  */  #line 217 "deffilep.y"
     { def_section_alt ((yyvsp[-1].id), (yyvsp[0].id));}      { def_section_alt ((yyvsp[(1) - (2)].id), (yyvsp[(2) - (2)].id));}
 #line 1637 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 44:    case 44:
 #line 221 "deffilep.y" /* yacc.c:1661  */  #line 221 "deffilep.y"
     { (yyval.number) = (yyvsp[-2].number) | (yyvsp[0].number); }      { (yyval.number) = (yyvsp[(1) - (3)].number) | (yyvsp[(3) - (3)].number); }
 #line 1643 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 45:    case 45:
 #line 222 "deffilep.y" /* yacc.c:1661  */  #line 222 "deffilep.y"
     { (yyval.number) = (yyvsp[0].number); }      { (yyval.number) = (yyvsp[(1) - (1)].number); }
 #line 1649 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 48:    case 48:
 #line 229 "deffilep.y" /* yacc.c:1661  */  #line 229 "deffilep.y"
     { (yyval.number)=(yyvsp[0].number);}      { (yyval.number)=(yyvsp[(2) - (2)].number);}
 #line 1655 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 49:    case 49:
 #line 230 "deffilep.y" /* yacc.c:1661  */  #line 230 "deffilep.y"
     { (yyval.number)=-1;}      { (yyval.number)=-1;}
 #line 1661 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 50:    case 50:
 #line 234 "deffilep.y" /* yacc.c:1661  */  #line 234 "deffilep.y"
     { (yyval.number) = 1;}      { (yyval.number) = 1;}
 #line 1667 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 51:    case 51:
 #line 235 "deffilep.y" /* yacc.c:1661  */  #line 235 "deffilep.y"
     { (yyval.number) = 2;}      { (yyval.number) = 2;}
 #line 1673 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 52:    case 52:
 #line 236 "deffilep.y" /* yacc.c:1661  */  #line 236 "deffilep.y"
     { (yyval.number)=4;}      { (yyval.number)=4;}
 #line 1679 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 53:    case 53:
 #line 237 "deffilep.y" /* yacc.c:1661  */  #line 237 "deffilep.y"
     { (yyval.number)=8;}      { (yyval.number)=8;}
 #line 1685 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 54:    case 54:
 #line 241 "deffilep.y" /* yacc.c:1661  */  #line 241 "deffilep.y"
     { (yyval.id_const) = "BASE"; }      { (yyval.id_const) = "BASE"; }
 #line 1691 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 55:    case 55:
 #line 242 "deffilep.y" /* yacc.c:1661  */  #line 242 "deffilep.y"
     { (yyval.id_const) = "CODE"; }      { (yyval.id_const) = "CODE"; }
 #line 1697 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 56:    case 56:
 #line 243 "deffilep.y" /* yacc.c:1661  */  #line 243 "deffilep.y"
     { (yyval.id_const) = "CONSTANT"; }      { (yyval.id_const) = "CONSTANT"; }
 #line 1703 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 57:    case 57:
 #line 244 "deffilep.y" /* yacc.c:1661  */  #line 244 "deffilep.y"
     { (yyval.id_const) = "constant"; }      { (yyval.id_const) = "constant"; }
 #line 1709 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 58:    case 58:
 #line 245 "deffilep.y" /* yacc.c:1661  */  #line 245 "deffilep.y"
     { (yyval.id_const) = "DATA"; }      { (yyval.id_const) = "DATA"; }
 #line 1715 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 59:    case 59:
 #line 246 "deffilep.y" /* yacc.c:1661  */  #line 246 "deffilep.y"
     { (yyval.id_const) = "data"; }      { (yyval.id_const) = "data"; }
 #line 1721 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 60:    case 60:
 #line 247 "deffilep.y" /* yacc.c:1661  */  #line 247 "deffilep.y"
     { (yyval.id_const) = "DESCRIPTION"; }      { (yyval.id_const) = "DESCRIPTION"; }
 #line 1727 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 61:    case 61:
 #line 248 "deffilep.y" /* yacc.c:1661  */  #line 248 "deffilep.y"
     { (yyval.id_const) = "DIRECTIVE"; }      { (yyval.id_const) = "DIRECTIVE"; }
 #line 1733 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 62:    case 62:
 #line 249 "deffilep.y" /* yacc.c:1661  */  #line 249 "deffilep.y"
     { (yyval.id_const) = "EXECUTE"; }      { (yyval.id_const) = "EXECUTE"; }
 #line 1739 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 63:    case 63:
 #line 250 "deffilep.y" /* yacc.c:1661  */  #line 250 "deffilep.y"
     { (yyval.id_const) = "EXPORTS"; }      { (yyval.id_const) = "EXPORTS"; }
 #line 1745 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 64:    case 64:
 #line 251 "deffilep.y" /* yacc.c:1661  */  #line 251 "deffilep.y"
     { (yyval.id_const) = "HEAPSIZE"; }      { (yyval.id_const) = "HEAPSIZE"; }
 #line 1751 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 65:    case 65:
 #line 252 "deffilep.y" /* yacc.c:1661  */  #line 252 "deffilep.y"
     { (yyval.id_const) = "IMPORTS"; }      { (yyval.id_const) = "IMPORTS"; }
 #line 1757 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 66:    case 66:
 #line 259 "deffilep.y" /* yacc.c:1661  */  #line 259 "deffilep.y"
     { (yyval.id_const) = "NAME"; }      { (yyval.id_const) = "NAME"; }
 #line 1763 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 67:    case 67:
 #line 260 "deffilep.y" /* yacc.c:1661  */  #line 260 "deffilep.y"
     { (yyval.id_const) = "NONAME"; }      { (yyval.id_const) = "NONAME"; }
 #line 1769 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 68:    case 68:
 #line 261 "deffilep.y" /* yacc.c:1661  */  #line 261 "deffilep.y"
     { (yyval.id_const) = "noname"; }      { (yyval.id_const) = "noname"; }
 #line 1775 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 69:    case 69:
 #line 262 "deffilep.y" /* yacc.c:1661  */  #line 262 "deffilep.y"
     { (yyval.id_const) = "PRIVATE"; }      { (yyval.id_const) = "PRIVATE"; }
 #line 1781 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 70:    case 70:
 #line 263 "deffilep.y" /* yacc.c:1661  */  #line 263 "deffilep.y"
     { (yyval.id_const) = "private"; }      { (yyval.id_const) = "private"; }
 #line 1787 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 71:    case 71:
 #line 264 "deffilep.y" /* yacc.c:1661  */  #line 264 "deffilep.y"
     { (yyval.id_const) = "READ"; }      { (yyval.id_const) = "READ"; }
 #line 1793 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 72:    case 72:
 #line 265 "deffilep.y" /* yacc.c:1661  */  #line 265 "deffilep.y"
     { (yyval.id_const) = "SHARED"; }      { (yyval.id_const) = "SHARED"; }
 #line 1799 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 73:    case 73:
 #line 266 "deffilep.y" /* yacc.c:1661  */  #line 266 "deffilep.y"
     { (yyval.id_const) = "STACKSIZE"; }      { (yyval.id_const) = "STACKSIZE"; }
 #line 1805 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 74:    case 74:
 #line 267 "deffilep.y" /* yacc.c:1661  */  #line 267 "deffilep.y"
     { (yyval.id_const) = "VERSION"; }      { (yyval.id_const) = "VERSION"; }
 #line 1811 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 75:    case 75:
 #line 268 "deffilep.y" /* yacc.c:1661  */  #line 268 "deffilep.y"
     { (yyval.id_const) = "WRITE"; }      { (yyval.id_const) = "WRITE"; }
 #line 1817 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 76:    case 76:
 #line 271 "deffilep.y" /* yacc.c:1661  */  #line 271 "deffilep.y"
     { (yyval.id) = (yyvsp[0].id); }      { (yyval.id) = (yyvsp[(1) - (1)].id); }
 #line 1823 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 77:    case 77:
 #line 273 "deffilep.y" /* yacc.c:1661  */  #line 273 "deffilep.y"
     {      {
             char *name = xmalloc (strlen ((yyvsp[0].id_const)) + 2);              char *name = xmalloc (strlen ((yyvsp[(2) - (2)].id_const)) + 2);
             sprintf (name, ".%s", (yyvsp[0].id_const));              sprintf (name, ".%s", (yyvsp[(2) - (2)].id_const));
             (yyval.id) = name;              (yyval.id) = name;
           }            }
 #line 1833 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 78:    case 78:
 #line 279 "deffilep.y" /* yacc.c:1661  */  #line 279 "deffilep.y"
     {      {
             char *name = def_pool_alloc (strlen ((yyvsp[0].id)) + 2);              char *name = def_pool_alloc (strlen ((yyvsp[(2) - (2)].id)) + 2);
             sprintf (name, ".%s", (yyvsp[0].id));              sprintf (name, ".%s", (yyvsp[(2) - (2)].id));
             (yyval.id) = name;              (yyval.id) = name;
           }            }
 #line 1843 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 79:    case 79:
 #line 285 "deffilep.y" /* yacc.c:1661  */  #line 285 "deffilep.y"
     {      {
             char *name = def_pool_alloc (strlen ((yyvsp[-2].id_const)) + 1 + strlen ((yyvsp[0].id)) + 1);              char *name = def_pool_alloc (strlen ((yyvsp[(1) - (3)].id_const)) + 1 + strlen ((yyvsp[(3) - (3)].id)) + 1);
             sprintf (name, "%s.%s", (yyvsp[-2].id_const), (yyvsp[0].id));              sprintf (name, "%s.%s", (yyvsp[(1) - (3)].id_const), (yyvsp[(3) - (3)].id));
             (yyval.id) = name;              (yyval.id) = name;
           }            }
 #line 1853 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 80:    case 80:
 #line 291 "deffilep.y" /* yacc.c:1661  */  #line 291 "deffilep.y"
     {      {
             char *name = def_pool_alloc (strlen ((yyvsp[-2].id)) + 1 + strlen ((yyvsp[0].id)) + 1);              char *name = def_pool_alloc (strlen ((yyvsp[(1) - (3)].id)) + 1 + strlen ((yyvsp[(3) - (3)].id)) + 1);
             sprintf (name, "%s.%s", (yyvsp[-2].id), (yyvsp[0].id));              sprintf (name, "%s.%s", (yyvsp[(1) - (3)].id), (yyvsp[(3) - (3)].id));
             (yyval.id) = name;              (yyval.id) = name;
           }            }
 #line 1863 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 81:    case 81:
 #line 298 "deffilep.y" /* yacc.c:1661  */  #line 298 "deffilep.y"
     { (yyval.id) = (yyvsp[0].id); }      { (yyval.id) = (yyvsp[(1) - (1)].id); }
 #line 1869 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 82:    case 82:
 #line 299 "deffilep.y" /* yacc.c:1661  */  #line 299 "deffilep.y"
     { (yyval.id) = ""; }      { (yyval.id) = ""; }
 #line 1875 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 83:    case 83:
 #line 302 "deffilep.y" /* yacc.c:1661  */  #line 302 "deffilep.y"
     { (yyval.id) = (yyvsp[0].id); }      { (yyval.id) = (yyvsp[(2) - (2)].id); }
 #line 1881 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 84:    case 84:
 #line 303 "deffilep.y" /* yacc.c:1661  */  #line 303 "deffilep.y"
     { (yyval.id) = 0; }      { (yyval.id) = 0; }
 #line 1887 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 85:    case 85:
 #line 307 "deffilep.y" /* yacc.c:1661  */  #line 307 "deffilep.y"
     { (yyval.number) = (yyvsp[0].number);}      { (yyval.number) = (yyvsp[(2) - (2)].number);}
 #line 1893 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 86:    case 86:
 #line 308 "deffilep.y" /* yacc.c:1661  */  #line 308 "deffilep.y"
     { (yyval.number) = -1;}      { (yyval.number) = -1;}
 #line 1899 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 87:    case 87:
 #line 312 "deffilep.y" /* yacc.c:1661  */  #line 312 "deffilep.y"
     { (yyval.id) = (yyvsp[0].id); }      { (yyval.id) = (yyvsp[(2) - (2)].id); }
 #line 1905 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 88:    case 88:
 #line 313 "deffilep.y" /* yacc.c:1661  */  #line 313 "deffilep.y"
     { (yyval.id) =  0; }      { (yyval.id) =  0; }
 #line 1911 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 89:    case 89:
 #line 316 "deffilep.y" /* yacc.c:1661  */  #line 316 "deffilep.y"
     { (yyval.vma) = (yyvsp[0].vma);}      { (yyval.vma) = (yyvsp[(3) - (3)].vma);}
 #line 1917 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 90:    case 90:
 #line 317 "deffilep.y" /* yacc.c:1661  */  #line 317 "deffilep.y"
     { (yyval.vma) = (bfd_vma) -1;}      { (yyval.vma) = (bfd_vma) -1;}
 #line 1923 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 91:    case 91:
 #line 320 "deffilep.y" /* yacc.c:1661  */  #line 320 "deffilep.y"
     { (yyval.id) = (yyvsp[0].id); }      { (yyval.id) = (yyvsp[(1) - (1)].id); }
 #line 1929 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 92:    case 92:
 #line 322 "deffilep.y" /* yacc.c:1661  */  #line 322 "deffilep.y"
     {      {
             char *id = def_pool_alloc (strlen ((yyvsp[0].id)) + 2);              char *id = def_pool_alloc (strlen ((yyvsp[(2) - (2)].id)) + 2);
             sprintf (id, ".%s", (yyvsp[0].id));              sprintf (id, ".%s", (yyvsp[(2) - (2)].id));
             (yyval.id) = id;              (yyval.id) = id;
           }            }
 #line 1939 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 93:    case 93:
 #line 328 "deffilep.y" /* yacc.c:1661  */  #line 328 "deffilep.y"
     {      {
             char *id = def_pool_alloc (strlen ((yyvsp[-3].id)) + 1 + strlen ((yyvsp[-1].digits)) + strlen ((yyvsp[0].id)) + 1);              char *id = def_pool_alloc (strlen ((yyvsp[(1) - (4)].id)) + 1 + strlen ((yyvsp[(3) - (4)].digits)) + strlen ((yyvsp[(4) - (4)].id)) + 1);
             sprintf (id, "%s.%s%s", (yyvsp[-3].id), (yyvsp[-1].digits), (yyvsp[0].id));              sprintf (id, "%s.%s%s", (yyvsp[(1) - (4)].id), (yyvsp[(3) - (4)].digits), (yyvsp[(4) - (4)].id));
             (yyval.id) = id;              (yyval.id) = id;
           }            }
 #line 1949 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 94:    case 94:
 #line 335 "deffilep.y" /* yacc.c:1661  */  #line 335 "deffilep.y"
     { (yyval.digits) = (yyvsp[0].digits); }      { (yyval.digits) = (yyvsp[(1) - (1)].digits); }
 #line 1955 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 95:    case 95:
 #line 336 "deffilep.y" /* yacc.c:1661  */  #line 336 "deffilep.y"
     { (yyval.digits) = ""; }      { (yyval.digits) = ""; }
 #line 1961 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 96:    case 96:
 #line 339 "deffilep.y" /* yacc.c:1661  */  #line 339 "deffilep.y"
     { (yyval.id) = (yyvsp[0].id); }      { (yyval.id) = (yyvsp[(1) - (1)].id); }
 #line 1967 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 97:    case 97:
 #line 340 "deffilep.y" /* yacc.c:1661  */  #line 340 "deffilep.y"
     { (yyval.id) = ""; }      { (yyval.id) = ""; }
 #line 1973 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 98:    case 98:
 #line 343 "deffilep.y" /* yacc.c:1661  */  #line 343 "deffilep.y"
     { (yyval.number) = strtoul ((yyvsp[0].digits), 0, 0); }      { (yyval.number) = strtoul ((yyvsp[(1) - (1)].digits), 0, 0); }
 #line 1979 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   case 99:    case 99:
 #line 345 "deffilep.y" /* yacc.c:1661  */  #line 345 "deffilep.y"
     { (yyval.vma) = (bfd_vma) strtoull ((yyvsp[0].digits), 0, 0); }      { (yyval.vma) = (bfd_vma) strtoull ((yyvsp[(1) - (1)].digits), 0, 0); }
 #line 1985 "deffilep.c" /* yacc.c:1661  */  
     break;      break;
   
   
 #line 1989 "deffilep.c" /* yacc.c:1661  */  /* Line 1267 of yacc.c.  */
   #line 2064 "deffilep.c"
       default: break;        default: break;
     }      }
   /* User semantic actions sometimes alter yychar, and that requires  
      that yytoken be updated with the new translation.  We take the  
      approach of translating immediately before every use of yytoken.  
      One alternative is translating here after every semantic action,  
      but that translation would be missed if the semantic action invokes  
      YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or  
      if it invokes YYBACKUP.  In the case of YYABORT or YYACCEPT, an  
      incorrect destructor might then be invoked immediately.  In the  
      case of YYERROR or YYBACKUP, subsequent parser actions might lead  
      to an incorrect destructor call or verbose syntax error message  
      before the lookahead is translated.  */  
   YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);    YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
   
   YYPOPSTACK (yylen);    YYPOPSTACK (yylen);
Line 2007  yyreduce:
Line 2071  yyreduce:
   
   *++yyvsp = yyval;    *++yyvsp = yyval;
   
   /* Now 'shift' the result of the reduction.  Determine what state  
     /* Now `shift' the result of the reduction.  Determine what state
      that goes to, based on the state we popped back to and the rule       that goes to, based on the state we popped back to and the rule
      number reduced by.  */       number reduced by.  */
   
Line 2022  yyreduce:
Line 2087  yyreduce:
   goto yynewstate;    goto yynewstate;
   
   
 /*--------------------------------------.  /*------------------------------------.
 | yyerrlab -- here on detecting error.  |  | yyerrlab -- here on detecting error |
 `--------------------------------------*/  `------------------------------------*/
 yyerrlab:  yyerrlab:
   /* Make sure we have latest lookahead translation.  See comments at  
      user semantic actions for why this is necessary.  */  
   yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);  
   
   /* If not already recovering from an error, report this error.  */    /* If not already recovering from an error, report this error.  */
   if (!yyerrstatus)    if (!yyerrstatus)
     {      {
Line 2037  yyerrlab:
Line 2098  yyerrlab:
 #if ! YYERROR_VERBOSE  #if ! YYERROR_VERBOSE
       yyerror (YY_("syntax error"));        yyerror (YY_("syntax error"));
 #else  #else
 # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \  
                                         yyssp, yytoken)  
       {        {
         char const *yymsgp = YY_("syntax error");          YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
         int yysyntax_error_status;          if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
         yysyntax_error_status = YYSYNTAX_ERROR;            {
         if (yysyntax_error_status == 0)              YYSIZE_T yyalloc = 2 * yysize;
           yymsgp = yymsg;              if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
         else if (yysyntax_error_status == 1)                yyalloc = YYSTACK_ALLOC_MAXIMUM;
           {              if (yymsg != yymsgbuf)
             if (yymsg != yymsgbuf)                YYSTACK_FREE (yymsg);
               YYSTACK_FREE (yymsg);              yymsg = (char *) YYSTACK_ALLOC (yyalloc);
             yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);              if (yymsg)
             if (!yymsg)                yymsg_alloc = yyalloc;
               {              else
                 yymsg = yymsgbuf;                {
                 yymsg_alloc = sizeof yymsgbuf;                  yymsg = yymsgbuf;
                 yysyntax_error_status = 2;                  yymsg_alloc = sizeof yymsgbuf;
               }                }
             else            }
               {  
                 yysyntax_error_status = YYSYNTAX_ERROR;          if (0 < yysize && yysize <= yymsg_alloc)
                 yymsgp = yymsg;            {
               }              (void) yysyntax_error (yymsg, yystate, yychar);
           }              yyerror (yymsg);
         yyerror (yymsgp);            }
         if (yysyntax_error_status == 2)          else
           goto yyexhaustedlab;            {
               yyerror (YY_("syntax error"));
               if (yysize != 0)
                 goto yyexhaustedlab;
             }
       }        }
 # undef YYSYNTAX_ERROR  
 #endif  #endif
     }      }
   
Line 2074  yyerrlab:
Line 2136  yyerrlab:
   
   if (yyerrstatus == 3)    if (yyerrstatus == 3)
     {      {
       /* If just tried and failed to reuse lookahead token after an        /* If just tried and failed to reuse look-ahead token after an
          error, discard it.  */           error, discard it.  */
   
       if (yychar <= YYEOF)        if (yychar <= YYEOF)
         {          {
           /* Return failure if at end of input.  */            /* Return failure if at end of input.  */
           if (yychar == YYEOF)            if (yychar == YYEOF)
             YYABORT;              YYABORT;
         }          }
       else        else
         {          {
           yydestruct ("Error: discarding",            yydestruct ("Error: discarding",
                       yytoken, &yylval);                        yytoken, &yylval);
           yychar = YYEMPTY;            yychar = YYEMPTY;
         }          }
     }      }
   
   /* Else will try to reuse lookahead token after shifting the error    /* Else will try to reuse look-ahead token after shifting the error
      token.  */       token.  */
   goto yyerrlab1;    goto yyerrlab1;
   
Line 2107  yyerrorlab:
Line 2169  yyerrorlab:
   if (/*CONSTCOND*/ 0)    if (/*CONSTCOND*/ 0)
      goto yyerrorlab;       goto yyerrorlab;
   
   /* Do not reclaim the symbols of the rule whose action triggered    /* Do not reclaim the symbols of the rule which action triggered
      this YYERROR.  */       this YYERROR.  */
   YYPOPSTACK (yylen);    YYPOPSTACK (yylen);
   yylen = 0;    yylen = 0;
Line 2120  yyerrorlab:
Line 2182  yyerrorlab:
 | yyerrlab1 -- common code for both syntax error and YYERROR.  |  | yyerrlab1 -- common code for both syntax error and YYERROR.  |
 `-------------------------------------------------------------*/  `-------------------------------------------------------------*/
 yyerrlab1:  yyerrlab1:
   yyerrstatus = 3;      /* Each real token shifted decrements this.  */    yyerrstatus = 3;      /* Each real token shifted decrements this.  */
   
   for (;;)    for (;;)
     {      {
       yyn = yypact[yystate];        yyn = yypact[yystate];
       if (!yypact_value_is_default (yyn))        if (yyn != YYPACT_NINF)
         {          {
           yyn += YYTERROR;            yyn += YYTERROR;
           if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)            if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
             {              {
               yyn = yytable[yyn];                yyn = yytable[yyn];
               if (0 < yyn)                if (0 < yyn)
                 break;                  break;
             }              }
         }          }
   
       /* Pop the current state because it cannot handle the error token.  */        /* Pop the current state because it cannot handle the error token.  */
       if (yyssp == yyss)        if (yyssp == yyss)
         YYABORT;          YYABORT;
   
   
       yydestruct ("Error: popping",        yydestruct ("Error: popping",
                   yystos[yystate], yyvsp);                    yystos[yystate], yyvsp);
       YYPOPSTACK (1);        YYPOPSTACK (1);
       yystate = *yyssp;        yystate = *yyssp;
       YY_STACK_PRINT (yyss, yyssp);        YY_STACK_PRINT (yyss, yyssp);
     }      }
   
   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN    if (yyn == YYFINAL)
       YYACCEPT;
   
   *++yyvsp = yylval;    *++yyvsp = yylval;
   YY_IGNORE_MAYBE_UNINITIALIZED_END  
   
   
   /* Shift the error token.  */    /* Shift the error token.  */
Line 2174  yyabortlab:
Line 2237  yyabortlab:
   yyresult = 1;    yyresult = 1;
   goto yyreturn;    goto yyreturn;
   
 #if !defined yyoverflow || YYERROR_VERBOSE  #ifndef yyoverflow
 /*-------------------------------------------------.  /*-------------------------------------------------.
 | yyexhaustedlab -- memory exhaustion comes here.  |  | yyexhaustedlab -- memory exhaustion comes here.  |
 `-------------------------------------------------*/  `-------------------------------------------------*/
Line 2185  yyexhaustedlab:
Line 2248  yyexhaustedlab:
 #endif  #endif
   
 yyreturn:  yyreturn:
   if (yychar != YYEMPTY)    if (yychar != YYEOF && yychar != YYEMPTY)
     {       yydestruct ("Cleanup: discarding lookahead",
       /* Make sure we have latest lookahead translation.  See comments at                   yytoken, &yylval);
          user semantic actions for why this is necessary.  */    /* Do not reclaim the symbols of the rule which action triggered
       yytoken = YYTRANSLATE (yychar);  
       yydestruct ("Cleanup: discarding lookahead",  
                   yytoken, &yylval);  
     }  
   /* Do not reclaim the symbols of the rule whose action triggered  
      this YYABORT or YYACCEPT.  */       this YYABORT or YYACCEPT.  */
   YYPOPSTACK (yylen);    YYPOPSTACK (yylen);
   YY_STACK_PRINT (yyss, yyssp);    YY_STACK_PRINT (yyss, yyssp);
   while (yyssp != yyss)    while (yyssp != yyss)
     {      {
       yydestruct ("Cleanup: popping",        yydestruct ("Cleanup: popping",
                   yystos[*yyssp], yyvsp);                    yystos[*yyssp], yyvsp);
       YYPOPSTACK (1);        YYPOPSTACK (1);
     }      }
 #ifndef yyoverflow  #ifndef yyoverflow
Line 2211  yyreturn:
Line 2269  yyreturn:
   if (yymsg != yymsgbuf)    if (yymsg != yymsgbuf)
     YYSTACK_FREE (yymsg);      YYSTACK_FREE (yymsg);
 #endif  #endif
   return yyresult;    /* Make sure YYID is used.  */
     return YYID (yyresult);
 }  }
 #line 347 "deffilep.y" /* yacc.c:1906  */  
   
   #line 347 "deffilep.y"
   
   
 /*****************************************************************************  /*****************************************************************************
Line 3360  def_pool_free (void)
Line 3421  def_pool_free (void)
       free (p);        free (p);
     }      }
 }  }
   

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

CVSweb <webmaster@jp.NetBSD.org>