home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / gcc-2.5.8-src.lha / src / amiga / gcc-2.5.8 / c-parse.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-22  |  129.0 KB  |  3,495 lines

  1.  
  2. /*  A Bison parser, made from c-parse.y with Bison version GNU Bison version 1.22
  3.   */
  4.  
  5. #define YYBISON 1  /* Identify Bison output.  */
  6.  
  7. #define    IDENTIFIER    258
  8. #define    TYPENAME    259
  9. #define    SCSPEC    260
  10. #define    TYPESPEC    261
  11. #define    TYPE_QUAL    262
  12. #define    CONSTANT    263
  13. #define    STRING    264
  14. #define    ELLIPSIS    265
  15. #define    SIZEOF    266
  16. #define    ENUM    267
  17. #define    STRUCT    268
  18. #define    UNION    269
  19. #define    IF    270
  20. #define    ELSE    271
  21. #define    WHILE    272
  22. #define    DO    273
  23. #define    FOR    274
  24. #define    SWITCH    275
  25. #define    CASE    276
  26. #define    DEFAULT    277
  27. #define    BREAK    278
  28. #define    CONTINUE    279
  29. #define    RETURN    280
  30. #define    GOTO    281
  31. #define    ASM_KEYWORD    282
  32. #define    TYPEOF    283
  33. #define    ALIGNOF    284
  34. #define    ALIGN    285
  35. #define    ATTRIBUTE    286
  36. #define    EXTENSION    287
  37. #define    LABEL    288
  38. #define    REALPART    289
  39. #define    IMAGPART    290
  40. #define    ASSIGN    291
  41. #define    OROR    292
  42. #define    ANDAND    293
  43. #define    EQCOMPARE    294
  44. #define    ARITHCOMPARE    295
  45. #define    LSHIFT    296
  46. #define    RSHIFT    297
  47. #define    UNARY    298
  48. #define    PLUSPLUS    299
  49. #define    MINUSMINUS    300
  50. #define    HYPERUNARY    301
  51. #define    POINTSAT    302
  52. #define    INTERFACE    303
  53. #define    IMPLEMENTATION    304
  54. #define    END    305
  55. #define    SELECTOR    306
  56. #define    DEFS    307
  57. #define    ENCODE    308
  58. #define    CLASSNAME    309
  59. #define    PUBLIC    310
  60. #define    PRIVATE    311
  61. #define    PROTECTED    312
  62. #define    PROTOCOL    313
  63. #define    OBJECTNAME    314
  64. #define    CLASS    315
  65. #define    ALIAS    316
  66. #define    OBJC_STRING    317
  67.  
  68. #line 44 "c-parse.y"
  69.  
  70. #include <stdio.h>
  71. #include <errno.h>
  72. #include <setjmp.h>
  73.  
  74. #include "config.h"
  75. #include "tree.h"
  76. #include "input.h"
  77. #include "c-lex.h"
  78. #include "c-tree.h"
  79. #include "flags.h"
  80.  
  81. #ifdef MULTIBYTE_CHARS
  82. #include <stdlib.h>
  83. #include <locale.h>
  84. #endif
  85.  
  86.  
  87. /* Since parsers are distinct for each language, put the language string
  88.    definition here.  */
  89. char *language_string = "GNU C";
  90.  
  91. #ifndef errno
  92. extern int errno;
  93. #endif
  94.  
  95. void yyerror ();
  96.  
  97. /* Like YYERROR but do call yyerror.  */
  98. #define YYERROR1 { yyerror ("syntax error"); YYERROR; }
  99.  
  100. /* Cause the `yydebug' variable to be defined.  */
  101. #define YYDEBUG 1
  102.  
  103. #line 81 "c-parse.y"
  104. typedef union {long itype; tree ttype; enum tree_code code;
  105.     char *filename; int lineno; } YYSTYPE;
  106. #line 192 "c-parse.y"
  107.  
  108. /* Number of statements (loosely speaking) seen so far.  */
  109. static int stmt_count;
  110.  
  111. /* Input file and line number of the end of the body of last simple_if;
  112.    used by the stmt-rule immediately after simple_if returns.  */
  113. static char *if_stmt_file;
  114. static int if_stmt_line;
  115.  
  116. /* List of types and structure classes of the current declaration.  */
  117. static tree current_declspecs;
  118.  
  119. /* Stack of saved values of current_declspecs.  */
  120. static tree declspec_stack;
  121.  
  122. /* 1 if we explained undeclared var errors.  */
  123. static int undeclared_variable_notice;
  124.  
  125.  
  126. /* Tell yyparse how to print a token's value, if yydebug is set.  */
  127.  
  128. #define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
  129. extern void yyprint ();
  130.  
  131. #ifndef YYLTYPE
  132. typedef
  133.   struct yyltype
  134.     {
  135.       int timestamp;
  136.       int first_line;
  137.       int first_column;
  138.       int last_line;
  139.       int last_column;
  140.       char *text;
  141.    }
  142.   yyltype;
  143.  
  144. #define YYLTYPE yyltype
  145. #endif
  146.  
  147. #include <stdio.h>
  148.  
  149. #ifndef __cplusplus
  150. #ifndef __STDC__
  151. #define const
  152. #endif
  153. #endif
  154.  
  155.  
  156.  
  157. #define    YYFINAL        619
  158. #define    YYFLAG        -32768
  159. #define    YYNTBASE    85
  160.  
  161. #define YYTRANSLATE(x) ((unsigned)(x) <= 317 ? yytranslate[x] : 221)
  162.  
  163. static const char yytranslate[] = {     0,
  164.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  165.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  166.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  167.      2,     2,    81,     2,     2,     2,    53,    44,     2,    60,
  168.     77,    51,    49,    82,    50,    59,    52,     2,     2,     2,
  169.      2,     2,     2,     2,     2,     2,     2,    39,    78,     2,
  170.     37,     2,    38,     2,     2,     2,     2,     2,     2,     2,
  171.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  172.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  173.     61,     2,    84,    43,     2,     2,     2,     2,     2,     2,
  174.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  175.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  176.      2,     2,    83,    42,    79,    80,     2,     2,     2,     2,
  177.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  178.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  179.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  180.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  181.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  182.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  183.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  184.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  185.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  186.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  187.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  188.      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  189.      2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
  190.      6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
  191.     16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  192.     26,    27,    28,    29,    30,    31,    32,    33,    34,    35,
  193.     36,    40,    41,    45,    46,    47,    48,    54,    55,    56,
  194.     57,    58,    62,    63,    64,    65,    66,    67,    68,    69,
  195.     70,    71,    72,    73,    74,    75,    76
  196. };
  197.  
  198. #if YYDEBUG != 0
  199. static const short yyprhs[] = {     0,
  200.      0,     1,     3,     4,     7,     8,    12,    14,    16,    22,
  201.     26,    31,    36,    39,    42,    45,    48,    50,    51,    52,
  202.     60,    65,    66,    67,    75,    80,    81,    82,    89,    93,
  203.     95,    97,    99,   101,   103,   105,   107,   109,   111,   113,
  204.    114,   116,   118,   122,   124,   127,   128,   132,   135,   138,
  205.    141,   146,   149,   154,   157,   160,   162,   167,   168,   176,
  206.    178,   182,   186,   190,   194,   198,   202,   206,   210,   214,
  207.    218,   222,   226,   230,   234,   240,   244,   248,   250,   252,
  208.    254,   258,   262,   263,   268,   273,   278,   282,   286,   289,
  209.    292,   294,   297,   298,   300,   303,   307,   309,   311,   314,
  210.    317,   322,   327,   330,   333,   337,   339,   341,   344,   347,
  211.    348,   353,   358,   362,   366,   369,   372,   375,   379,   380,
  212.    383,   386,   388,   390,   393,   396,   399,   403,   404,   407,
  213.    409,   411,   413,   418,   423,   425,   427,   429,   431,   435,
  214.    437,   441,   442,   447,   448,   455,   459,   460,   467,   471,
  215.    472,   479,   481,   485,   487,   489,   494,   499,   508,   510,
  216.    511,   516,   518,   519,   522,   524,   528,   530,   531,   536,
  217.    538,   539,   548,   549,   556,   557,   562,   563,   569,   570,
  218.    574,   575,   579,   581,   583,   587,   591,   596,   600,   604,
  219.    606,   610,   615,   619,   623,   625,   629,   633,   637,   642,
  220.    646,   648,   649,   656,   661,   664,   665,   672,   677,   680,
  221.    681,   689,   690,   697,   700,   701,   703,   704,   706,   708,
  222.    711,   712,   716,   719,   723,   725,   729,   731,   733,   735,
  223.    739,   744,   751,   757,   759,   763,   765,   769,   772,   775,
  224.    776,   778,   780,   783,   784,   787,   791,   795,   798,   802,
  225.    807,   811,   814,   818,   821,   823,   826,   829,   830,   832,
  226.    835,   836,   837,   839,   841,   844,   848,   850,   853,   856,
  227.    863,   869,   875,   878,   881,   886,   887,   892,   893,   894,
  228.    898,   903,   907,   909,   911,   913,   915,   918,   919,   924,
  229.    926,   930,   931,   932,   940,   946,   949,   950,   951,   952,
  230.    965,   966,   973,   976,   979,   982,   986,   993,  1002,  1013,
  231.   1026,  1030,  1035,  1037,  1039,  1040,  1047,  1051,  1057,  1060,
  232.   1063,  1064,  1066,  1067,  1069,  1070,  1072,  1074,  1078,  1083,
  233.   1085,  1089,  1090,  1093,  1096,  1097,  1102,  1105,  1106,  1108,
  234.   1110,  1114,  1116,  1120,  1123,  1126,  1129,  1132,  1135,  1136,
  235.   1139,  1141,  1144,  1146,  1150,  1152
  236. };
  237.  
  238. static const short yyrhs[] = {    -1,
  239.     86,     0,     0,    87,    89,     0,     0,    86,    88,    89,
  240.      0,    91,     0,    90,     0,    27,    60,   100,    77,    78,
  241.      0,   117,   127,    78,     0,   121,   117,   127,    78,     0,
  242.    119,   117,   126,    78,     0,   121,    78,     0,   119,    78,
  243.      0,     1,    78,     0,     1,    79,     0,    78,     0,     0,
  244.      0,   119,   117,   150,    92,   111,    93,   180,     0,   119,
  245.    117,   150,     1,     0,     0,     0,   121,   117,   153,    94,
  246.    111,    95,   180,     0,   121,   117,   153,     1,     0,     0,
  247.      0,   117,   153,    96,   111,    97,   180,     0,   117,   153,
  248.      1,     0,     3,     0,     4,     0,    44,     0,    50,     0,
  249.     49,     0,    55,     0,    56,     0,    80,     0,    81,     0,
  250.    102,     0,     0,   102,     0,   107,     0,   102,    82,   107,
  251.      0,   108,     0,    51,   105,     0,     0,    32,   104,   105,
  252.      0,    99,   105,     0,    41,    98,     0,    11,   103,     0,
  253.     11,    60,   168,    77,     0,    29,   103,     0,    29,    60,
  254.    168,    77,     0,    34,   105,     0,    35,   105,     0,   103,
  255.      0,    60,   168,    77,   105,     0,     0,    60,   168,    77,
  256.     83,   106,   138,    79,     0,   105,     0,   107,    49,   107,
  257.      0,   107,    50,   107,     0,   107,    51,   107,     0,   107,
  258.     52,   107,     0,   107,    53,   107,     0,   107,    47,   107,
  259.      0,   107,    48,   107,     0,   107,    46,   107,     0,   107,
  260.     45,   107,     0,   107,    44,   107,     0,   107,    42,   107,
  261.      0,   107,    43,   107,     0,   107,    41,   107,     0,   107,
  262.     40,   107,     0,   107,    38,   204,    39,   107,     0,   107,
  263.     37,   107,     0,   107,    36,   107,     0,     3,     0,     8,
  264.      0,   110,     0,    60,   100,    77,     0,    60,     1,    77,
  265.      0,     0,    60,   109,   181,    77,     0,   108,    60,   101,
  266.     77,     0,   108,    61,   100,    84,     0,   108,    59,    98,
  267.      0,   108,    58,    98,     0,   108,    55,     0,   108,    56,
  268.      0,     9,     0,   110,     9,     0,     0,   113,     0,   113,
  269.     10,     0,   186,   187,   114,     0,   112,     0,   175,     0,
  270.    113,   112,     0,   112,   175,     0,   119,   117,   126,    78,
  271.      0,   121,   117,   127,    78,     0,   119,    78,     0,   121,
  272.     78,     0,   186,   187,   118,     0,   115,     0,   175,     0,
  273.    116,   115,     0,   115,   175,     0,     0,   119,   117,   126,
  274.     78,     0,   121,   117,   127,    78,     0,   119,   117,   146,
  275.      0,   121,   117,   148,     0,   119,    78,     0,   121,    78,
  276.      0,   124,   120,     0,   121,   124,   120,     0,     0,   120,
  277.    125,     0,   120,     5,     0,     7,     0,     5,     0,   121,
  278.      7,     0,   121,     5,     0,   124,   123,     0,   170,   124,
  279.    123,     0,     0,   123,   125,     0,     6,     0,   154,     0,
  280.      4,     0,    28,    60,   100,    77,     0,    28,    60,   168,
  281.     77,     0,     6,     0,     7,     0,   154,     0,   129,     0,
  282.    126,    82,   129,     0,   131,     0,   127,    82,   129,     0,
  283.      0,    27,    60,   110,    77,     0,     0,   150,   128,   133,
  284.     37,   130,   136,     0,   150,   128,   133,     0,     0,   153,
  285.    128,   133,    37,   132,   136,     0,   153,   128,   133,     0,
  286.      0,    31,    60,    60,   134,    77,    77,     0,   135,     0,
  287.    134,    82,   135,     0,     3,     0,     7,     0,     3,    60,
  288.      3,    77,     0,     3,    60,     8,    77,     0,     3,    60,
  289.      3,    82,     8,    82,     8,    77,     0,   107,     0,     0,
  290.     83,   137,   138,    79,     0,     1,     0,     0,   139,   159,
  291.      0,   140,     0,   139,    82,   140,     0,   107,     0,     0,
  292.     83,   141,   138,    79,     0,     1,     0,     0,    61,   107,
  293.     10,   107,    84,    37,   142,   140,     0,     0,    61,   107,
  294.     84,    37,   143,   140,     0,     0,    98,    39,   144,   140,
  295.      0,     0,    59,    98,    37,   145,   140,     0,     0,   150,
  296.    147,   181,     0,     0,   153,   149,   181,     0,   151,     0,
  297.    153,     0,    60,   151,    77,     0,   151,    60,   216,     0,
  298.    151,    61,   100,    84,     0,   151,    61,    84,     0,    51,
  299.    171,   151,     0,     4,     0,   152,    60,   216,     0,   152,
  300.     61,   100,    84,     0,   152,    61,    84,     0,    51,   171,
  301.    152,     0,     4,     0,   153,    60,   216,     0,    60,   153,
  302.     77,     0,    51,   171,   153,     0,   153,    61,   100,    84,
  303.      0,   153,    61,    84,     0,     3,     0,     0,    13,    98,
  304.     83,   155,   161,    79,     0,    13,    83,   161,    79,     0,
  305.     13,    98,     0,     0,    14,    98,    83,   156,   161,    79,
  306.      0,    14,    83,   161,    79,     0,    14,    98,     0,     0,
  307.     12,    98,    83,   157,   166,   160,    79,     0,     0,    12,
  308.     83,   158,   166,   160,    79,     0,    12,    98,     0,     0,
  309.     82,     0,     0,    82,     0,   162,     0,   162,   163,     0,
  310.      0,   162,   163,    78,     0,   162,    78,     0,   122,   117,
  311.    164,     0,   122,     0,   170,   117,   164,     0,   170,     0,
  312.      1,     0,   165,     0,   164,    82,   165,     0,   186,   187,
  313.    150,   133,     0,   186,   187,   150,    39,   107,   133,     0,
  314.    186,   187,    39,   107,   133,     0,   167,     0,   166,    82,
  315.    167,     0,    98,     0,    98,    37,   107,     0,   122,   169,
  316.      0,   170,   169,     0,     0,   172,     0,     7,     0,   170,
  317.      7,     0,     0,   171,     7,     0,    60,   172,    77,     0,
  318.     51,   171,   172,     0,    51,   171,     0,   172,    60,   209,
  319.      0,   172,    61,   100,    84,     0,   172,    61,    84,     0,
  320.     60,   209,     0,    61,   100,    84,     0,    61,    84,     0,
  321.    189,     0,   173,   189,     0,   173,   175,     0,     0,   173,
  322.      0,     1,    78,     0,     0,     0,   178,     0,   179,     0,
  323.    178,   179,     0,    33,   220,    78,     0,   181,     0,     1,
  324.    181,     0,    83,    79,     0,    83,   176,   177,   116,   174,
  325.     79,     0,    83,   176,   177,     1,    79,     0,    83,   176,
  326.    177,   173,    79,     0,   183,   188,     0,   183,     1,     0,
  327.     15,    60,   100,    77,     0,     0,    18,   185,   188,    17,
  328.      0,     0,     0,   186,   187,   191,     0,   186,   187,   202,
  329.    188,     0,   186,   187,   190,     0,   191,     0,   202,     0,
  330.    181,     0,   199,     0,   100,    78,     0,     0,   182,    16,
  331.    192,   188,     0,   182,     0,   182,    16,     1,     0,     0,
  332.      0,    17,   193,    60,   100,    77,   194,   188,     0,   184,
  333.     60,   100,    77,    78,     0,   184,     1,     0,     0,     0,
  334.      0,    19,    60,   204,    78,   195,   204,    78,   196,   204,
  335.     77,   197,   188,     0,     0,    20,    60,   100,    77,   198,
  336.    188,     0,    23,    78,     0,    24,    78,     0,    25,    78,
  337.      0,    25,   100,    78,     0,    27,   203,    60,   100,    77,
  338.     78,     0,    27,   203,    60,   100,    39,   205,    77,    78,
  339.      0,    27,   203,    60,   100,    39,   205,    39,   205,    77,
  340.     78,     0,    27,   203,    60,   100,    39,   205,    39,   205,
  341.     39,   208,    77,    78,     0,    26,    98,    78,     0,    26,
  342.     51,   100,    78,     0,    78,     0,   200,     0,     0,    19,
  343.     60,   108,    77,   201,   188,     0,    21,   107,    39,     0,
  344.     21,   107,    10,   107,    39,     0,    22,    39,     0,    98,
  345.     39,     0,     0,     7,     0,     0,   100,     0,     0,   206,
  346.      0,   207,     0,   206,    82,   207,     0,     9,    60,   100,
  347.     77,     0,   110,     0,   208,    82,   110,     0,     0,   210,
  348.    211,     0,   213,    77,     0,     0,   214,    78,   212,   211,
  349.      0,     1,    77,     0,     0,    10,     0,   214,     0,   214,
  350.     82,    10,     0,   215,     0,   214,    82,   215,     0,   119,
  351.    152,     0,   119,   153,     0,   119,   169,     0,   121,   153,
  352.      0,   121,   169,     0,     0,   217,   218,     0,   211,     0,
  353.    219,    77,     0,     3,     0,   219,    82,     3,     0,    98,
  354.      0,   220,    82,    98,     0
  355. };
  356.  
  357. #endif
  358.  
  359. #if YYDEBUG != 0
  360. static const short yyrline[] = { 0,
  361.    218,   222,   235,   237,   237,   238,   240,   242,   243,   253,
  362.    259,   261,   263,   265,   267,   268,   269,   274,   280,   282,
  363.    283,   285,   290,   292,   293,   295,   300,   302,   303,   307,
  364.    309,   312,   314,   316,   318,   320,   322,   324,   328,   332,
  365.    335,   338,   341,   345,   347,   350,   353,   356,   360,   386,
  366.    391,   393,   395,   397,   399,   403,   405,   408,   412,   439,
  367.    441,   443,   445,   447,   449,   451,   453,   455,   457,   459,
  368.    461,   463,   465,   467,   469,   471,   474,   480,   581,   582,
  369.    584,   590,   592,   606,   629,   631,   633,   637,   643,   645,
  370.    650,   652,   657,   659,   660,   670,   675,   677,   678,   679,
  371.    682,   687,   691,   694,   702,   707,   709,   710,   711,   718,
  372.    726,   731,   735,   739,   743,   745,   753,   756,   760,   762,
  373.    764,   775,   779,   781,   784,   797,   800,   804,   806,   814,
  374.    815,   816,   820,   822,   828,   829,   830,   833,   835,   838,
  375.    840,   843,   846,   852,   859,   862,   868,   875,   878,   885,
  376.    888,   893,   895,   900,   914,   915,   925,   936,   956,   958,
  377.    963,   970,   975,   979,   982,   984,   989,   992,   994,   996,
  378.   1000,  1003,  1003,  1006,  1006,  1009,  1009,  1012,  1014,  1031,
  379.   1035,  1052,  1059,  1061,  1066,  1069,  1074,  1076,  1078,  1080,
  380.   1088,  1094,  1096,  1098,  1100,  1106,  1112,  1114,  1116,  1118,
  381.   1120,  1123,  1128,  1132,  1135,  1137,  1139,  1141,  1144,  1146,
  382.   1149,  1152,  1155,  1158,  1162,  1164,  1167,  1169,  1173,  1176,
  383.   1181,  1183,  1185,  1199,  1205,  1210,  1215,  1220,  1224,  1226,
  384.   1230,  1234,  1238,  1248,  1250,  1255,  1258,  1262,  1265,  1269,
  385.   1272,  1275,  1278,  1282,  1285,  1289,  1293,  1295,  1297,  1299,
  386.   1301,  1303,  1305,  1307,  1315,  1317,  1318,  1321,  1323,  1326,
  387.   1329,  1340,  1342,  1347,  1349,  1352,  1366,  1369,  1372,  1374,
  388.   1379,  1384,  1392,  1397,  1400,  1413,  1421,  1425,  1429,  1433,
  389.   1439,  1443,  1448,  1450,  1461,  1464,  1465,  1482,  1487,  1490,
  390.   1501,  1503,  1513,  1523,  1524,  1532,  1535,  1547,  1551,  1568,
  391.   1575,  1584,  1586,  1591,  1596,  1600,  1604,  1615,  1622,  1629,
  392.   1636,  1647,  1651,  1654,  1659,  1682,  1713,  1738,  1767,  1782,
  393.   1793,  1797,  1801,  1804,  1809,  1811,  1814,  1816,  1820,  1825,
  394.   1828,  1834,  1839,  1844,  1846,  1855,  1856,  1862,  1864,  1869,
  395.   1871,  1875,  1878,  1884,  1887,  1889,  1891,  1893,  1900,  1905,
  396.   1910,  1912,  1921,  1924,  1929,  1932
  397. };
  398.  
  399. static const char * const yytname[] = {   "$","error","$illegal.","IDENTIFIER",
  400. "TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
  401. "ENUM","STRUCT","UNION","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT",
  402. "BREAK","CONTINUE","RETURN","GOTO","ASM_KEYWORD","TYPEOF","ALIGNOF","ALIGN",
  403. "ATTRIBUTE","EXTENSION","LABEL","REALPART","IMAGPART","ASSIGN","'='","'?'","':'",
  404. "OROR","ANDAND","'|'","'^'","'&'","EQCOMPARE","ARITHCOMPARE","LSHIFT","RSHIFT",
  405. "'+'","'-'","'*'","'/'","'%'","UNARY","PLUSPLUS","MINUSMINUS","HYPERUNARY","POINTSAT",
  406. "'.'","'('","'['","INTERFACE","IMPLEMENTATION","END","SELECTOR","DEFS","ENCODE",
  407. "CLASSNAME","PUBLIC","PRIVATE","PROTECTED","PROTOCOL","OBJECTNAME","CLASS","ALIAS",
  408. "OBJC_STRING","')'","';'","'}'","'~'","'!'","','","'{'","']'","program","extdefs",
  409. "@1","@2","extdef","datadef","fndef","@3","@4","@5","@6","@7","@8","identifier",
  410. "unop","expr","exprlist","nonnull_exprlist","unary_expr","@9","cast_expr","@10",
  411. "expr_no_commas","primary","@11","string","xdecls","lineno_datadecl","datadecls",
  412. "datadecl","lineno_decl","decls","setspecs","decl","typed_declspecs","reserved_declspecs",
  413. "declmods","typed_typespecs","reserved_typespecquals","typespec","typespecqual_reserved",
  414. "initdecls","notype_initdecls","maybeasm","initdcl","@12","notype_initdcl","@13",
  415. "maybe_attribute","attribute_list","attrib","init","@14","initlist_maybe_comma",
  416. "initlist1","initelt","@15","@16","@17","@18","@19","nested_function","@20",
  417. "notype_nested_function","@21","declarator","after_type_declarator","parm_declarator",
  418. "notype_declarator","structsp","@22","@23","@24","@25","maybecomma","maybecomma_warn",
  419. "component_decl_list","component_decl_list2","component_decl","components","component_declarator",
  420. "enumlist","enumerator","typename","absdcl","nonempty_type_quals","type_quals",
  421. "absdcl1","stmts","xstmts","errstmt","pushlevel","maybe_label_decls","label_decls",
  422. "label_decl","compstmt_or_error","compstmt","simple_if","if_prefix","do_stmt_start",
  423. "@26","save_filename","save_lineno","lineno_labeled_stmt","lineno_stmt_or_label",
  424. "stmt_or_label","stmt","@27","@28","@29","@30","@31","@32","@33","all_iter_stmt",
  425. "all_iter_stmt_simple","@34","label","maybe_type_qual","xexpr","asm_operands",
  426. "nonnull_asm_operands","asm_operand","asm_clobbers","parmlist","@35","parmlist_1",
  427. "@36","parmlist_2","parms","parm","parmlist_or_identifiers","@37","parmlist_or_identifiers_1",
  428. "identifiers","identifiers_or_typenames",""
  429. };
  430. #endif
  431.  
  432. static const short yyr1[] = {     0,
  433.     85,    85,    87,    86,    88,    86,    89,    89,    89,    90,
  434.     90,    90,    90,    90,    90,    90,    90,    92,    93,    91,
  435.     91,    94,    95,    91,    91,    96,    97,    91,    91,    98,
  436.     98,    99,    99,    99,    99,    99,    99,    99,   100,   101,
  437.    101,   102,   102,   103,   103,   104,   103,   103,   103,   103,
  438.    103,   103,   103,   103,   103,   105,   105,   106,   105,   107,
  439.    107,   107,   107,   107,   107,   107,   107,   107,   107,   107,
  440.    107,   107,   107,   107,   107,   107,   107,   108,   108,   108,
  441.    108,   108,   109,   108,   108,   108,   108,   108,   108,   108,
  442.    110,   110,   111,   111,   111,   112,   113,   113,   113,   113,
  443.    114,   114,   114,   114,   115,   116,   116,   116,   116,   117,
  444.    118,   118,   118,   118,   118,   118,   119,   119,   120,   120,
  445.    120,   121,   121,   121,   121,   122,   122,   123,   123,   124,
  446.    124,   124,   124,   124,   125,   125,   125,   126,   126,   127,
  447.    127,   128,   128,   130,   129,   129,   132,   131,   131,   133,
  448.    133,   134,   134,   135,   135,   135,   135,   135,   136,   137,
  449.    136,   136,   138,   138,   139,   139,   140,   141,   140,   140,
  450.    142,   140,   143,   140,   144,   140,   145,   140,   147,   146,
  451.    149,   148,   150,   150,   151,   151,   151,   151,   151,   151,
  452.    152,   152,   152,   152,   152,   153,   153,   153,   153,   153,
  453.    153,   155,   154,   154,   154,   156,   154,   154,   154,   157,
  454.    154,   158,   154,   154,   159,   159,   160,   160,   161,   161,
  455.    162,   162,   162,   163,   163,   163,   163,   163,   164,   164,
  456.    165,   165,   165,   166,   166,   167,   167,   168,   168,   169,
  457.    169,   170,   170,   171,   171,   172,   172,   172,   172,   172,
  458.    172,   172,   172,   172,   173,   173,   173,   174,   174,   175,
  459.    176,   177,   177,   178,   178,   179,   180,   180,   181,   181,
  460.    181,   181,   182,   182,   183,   185,   184,   186,   187,   188,
  461.    188,   189,   190,   190,   191,   191,   191,   192,   191,   191,
  462.    191,   193,   194,   191,   191,   191,   195,   196,   197,   191,
  463.    198,   191,   191,   191,   191,   191,   191,   191,   191,   191,
  464.    191,   191,   191,   199,   201,   200,   202,   202,   202,   202,
  465.    203,   203,   204,   204,   205,   205,   206,   206,   207,   208,
  466.    208,   210,   209,   211,   212,   211,   211,   213,   213,   213,
  467.    213,   214,   214,   215,   215,   215,   215,   215,   217,   216,
  468.    218,   218,   219,   219,   220,   220
  469. };
  470.  
  471. static const short yyr2[] = {     0,
  472.      0,     1,     0,     2,     0,     3,     1,     1,     5,     3,
  473.      4,     4,     2,     2,     2,     2,     1,     0,     0,     7,
  474.      4,     0,     0,     7,     4,     0,     0,     6,     3,     1,
  475.      1,     1,     1,     1,     1,     1,     1,     1,     1,     0,
  476.      1,     1,     3,     1,     2,     0,     3,     2,     2,     2,
  477.      4,     2,     4,     2,     2,     1,     4,     0,     7,     1,
  478.      3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  479.      3,     3,     3,     3,     5,     3,     3,     1,     1,     1,
  480.      3,     3,     0,     4,     4,     4,     3,     3,     2,     2,
  481.      1,     2,     0,     1,     2,     3,     1,     1,     2,     2,
  482.      4,     4,     2,     2,     3,     1,     1,     2,     2,     0,
  483.      4,     4,     3,     3,     2,     2,     2,     3,     0,     2,
  484.      2,     1,     1,     2,     2,     2,     3,     0,     2,     1,
  485.      1,     1,     4,     4,     1,     1,     1,     1,     3,     1,
  486.      3,     0,     4,     0,     6,     3,     0,     6,     3,     0,
  487.      6,     1,     3,     1,     1,     4,     4,     8,     1,     0,
  488.      4,     1,     0,     2,     1,     3,     1,     0,     4,     1,
  489.      0,     8,     0,     6,     0,     4,     0,     5,     0,     3,
  490.      0,     3,     1,     1,     3,     3,     4,     3,     3,     1,
  491.      3,     4,     3,     3,     1,     3,     3,     3,     4,     3,
  492.      1,     0,     6,     4,     2,     0,     6,     4,     2,     0,
  493.      7,     0,     6,     2,     0,     1,     0,     1,     1,     2,
  494.      0,     3,     2,     3,     1,     3,     1,     1,     1,     3,
  495.      4,     6,     5,     1,     3,     1,     3,     2,     2,     0,
  496.      1,     1,     2,     0,     2,     3,     3,     2,     3,     4,
  497.      3,     2,     3,     2,     1,     2,     2,     0,     1,     2,
  498.      0,     0,     1,     1,     2,     3,     1,     2,     2,     6,
  499.      5,     5,     2,     2,     4,     0,     4,     0,     0,     3,
  500.      4,     3,     1,     1,     1,     1,     2,     0,     4,     1,
  501.      3,     0,     0,     7,     5,     2,     0,     0,     0,    12,
  502.      0,     6,     2,     2,     2,     3,     6,     8,    10,    12,
  503.      3,     4,     1,     1,     0,     6,     3,     5,     2,     2,
  504.      0,     1,     0,     1,     0,     1,     1,     3,     4,     1,
  505.      3,     0,     2,     2,     0,     4,     2,     0,     1,     1,
  506.      3,     1,     3,     2,     2,     2,     2,     2,     0,     2,
  507.      1,     2,     1,     3,     1,     3
  508. };
  509.  
  510. static const short yydefact[] = {     3,
  511.      5,     0,     0,     0,   132,   123,   130,   122,     0,     0,
  512.      0,     0,     0,    17,     4,     8,     7,     0,   110,   110,
  513.    119,   131,     6,    15,    16,    30,    31,   212,   214,   221,
  514.    205,   221,   209,     0,     0,   201,   244,     0,     0,   140,
  515.      0,    14,     0,   125,   124,    13,     0,   119,   117,     0,
  516.    210,     0,     0,   202,     0,   206,    78,    79,    91,     0,
  517.      0,    46,     0,     0,     0,    32,    34,    33,     0,    35,
  518.     36,     0,    37,    38,     0,     0,    39,    56,    60,    42,
  519.     44,    80,   242,     0,   240,   128,     0,   240,     0,     0,
  520.     10,     0,    29,     0,   349,     0,     0,   150,   190,   244,
  521.      0,     0,   138,     0,   183,   184,     0,     0,   118,   121,
  522.    135,   136,   120,   137,   236,   217,   234,     0,   204,   228,
  523.    223,   110,   220,   110,   221,   208,   221,     0,    50,     0,
  524.     52,     0,    54,    55,    49,    45,     0,     0,     0,     0,
  525.     48,     0,     0,     0,     0,   323,     0,     0,     0,     0,
  526.      0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  527.     89,    90,     0,     0,    40,     0,    92,   133,   244,   332,
  528.      0,   238,   241,   126,   134,   243,   128,   239,   245,   198,
  529.    197,   141,   142,     0,   196,     0,   200,     0,     0,    27,
  530.      0,   278,    98,   279,     0,   149,     0,     0,    12,     0,
  531.     21,     0,   150,   349,     0,    11,    25,     0,     0,   218,
  532.      0,   217,   278,   222,   278,     0,     0,     0,     0,    47,
  533.     82,    81,   261,     0,     0,     9,    43,    77,    76,   324,
  534.      0,    74,    73,    71,    72,    70,    69,    68,    66,    67,
  535.     61,    62,    63,    64,    65,    88,    87,     0,    41,     0,
  536.    248,     0,   252,     0,   254,     0,   332,     0,   129,   127,
  537.      0,     0,   353,   339,   240,   240,   351,     0,   340,   342,
  538.    350,     0,   199,   260,     0,   100,    95,    99,     0,     0,
  539.    147,   189,   185,   139,    19,   146,   186,   188,     0,    23,
  540.    237,   235,   213,     0,   224,   229,   279,   226,   203,   207,
  541.     51,    53,   269,   262,    84,    58,    57,     0,    85,    86,
  542.    247,   246,   333,   253,   249,   251,     0,   143,   337,   195,
  543.    244,   332,   344,   345,   346,   244,   347,   348,   334,   335,
  544.      0,   352,     0,     0,    28,   267,    96,   110,   110,     0,
  545.      0,     0,   144,   187,     0,   211,   278,     0,     0,     0,
  546.    263,   264,     0,    75,   250,   248,   349,     0,   248,     0,
  547.    341,   343,   354,   268,   103,     0,   104,     0,   154,   155,
  548.      0,   152,   162,   160,   159,   148,    20,     0,    24,   230,
  549.      0,   150,   355,     0,     0,     0,   278,     0,   107,   279,
  550.    255,   265,   170,    78,     0,     0,   168,     0,   167,     0,
  551.    215,   165,   194,   191,   193,     0,   336,     0,     0,   142,
  552.      0,     0,     0,     0,   145,   150,     0,   231,   266,     0,
  553.    271,   109,   108,     0,     0,   272,   257,   279,   256,     0,
  554.      0,     0,     0,   175,    59,     0,   164,   192,   101,   102,
  555.      0,     0,   151,   153,     0,   233,   150,   356,   270,     0,
  556.    132,     0,   292,   276,     0,     0,     0,     0,     0,     0,
  557.      0,     0,   321,   313,     0,     0,   105,   110,   110,   285,
  558.    290,     0,     0,   282,   283,   286,   314,   284,   177,     0,
  559.      0,     0,     0,   166,   156,     0,   157,   161,   232,     0,
  560.      0,   278,   323,     0,     0,   319,   303,   304,   305,     0,
  561.      0,     0,   322,     0,   320,   287,   115,     0,   116,     0,
  562.      0,   274,   279,   273,   296,     0,     0,     0,   173,   169,
  563.    176,     0,     0,     0,     0,    44,     0,     0,     0,   317,
  564.    306,     0,   311,     0,     0,   113,   142,     0,   114,   142,
  565.    291,   278,     0,     0,   178,     0,     0,     0,   275,     0,
  566.    277,   315,   297,   301,     0,   312,     0,   111,     0,   112,
  567.      0,   289,   280,   278,     0,   171,   174,     0,   293,   278,
  568.    323,   278,   318,   325,     0,   180,   182,   281,   295,     0,
  569.    158,   278,   316,     0,   302,     0,     0,   326,   327,   307,
  570.    172,   294,   298,     0,   325,     0,     0,   323,     0,     0,
  571.    308,   328,     0,   329,     0,     0,   299,   330,     0,   309,
  572.    278,     0,     0,   300,   310,   331,     0,     0,     0
  573. };
  574.  
  575. static const short yydefgoto[] = {   617,
  576.      1,     2,     3,    15,    16,    17,   202,   342,   208,   345,
  577.     97,   275,   398,    75,   230,   248,    77,    78,   132,    79,
  578.    353,    80,    81,   139,    82,   190,   191,   192,   337,   386,
  579.    387,    18,   467,   265,    49,   266,    85,   174,    21,   113,
  580.    102,    39,    98,   103,   378,    40,   341,   196,   371,   372,
  581.    376,   414,   400,   401,   402,   433,   580,   547,   483,   517,
  582.    536,   559,   539,   561,   183,   105,   323,   106,    22,   125,
  583.    127,   118,    50,   437,   211,    52,    53,   123,   295,   296,
  584.    116,   117,    87,   172,    88,    89,   173,   388,   425,   193,
  585.    304,   350,   351,   352,   335,   336,   471,   472,   473,   492,
  586.    513,   279,   514,   391,   474,   475,   542,   491,   582,   571,
  587.    598,   611,   572,   476,   477,   570,   478,   504,   231,   587,
  588.    588,   589,   609,   253,   254,   267,   360,   268,   269,   270,
  589.    185,   186,   271,   272,   384
  590. };
  591.  
  592. static const short yypact[] = {    68,
  593.     86,  1840,  1840,   328,-32768,-32768,-32768,-32768,    60,    70,
  594.     77,    67,    73,-32768,-32768,-32768,-32768,    95,    42,   398,
  595. -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,    53,-32768,
  596.     61,-32768,    75,  1719,  1635,-32768,-32768,    95,    98,-32768,
  597.    711,-32768,   294,-32768,-32768,-32768,    95,-32768,   684,   411,
  598. -32768,    71,   261,-32768,    89,-32768,-32768,-32768,-32768,  1732,
  599.   1782,-32768,  1719,  1719,   411,-32768,-32768,-32768,  1719,-32768,
  600. -32768,  1033,-32768,-32768,  1719,   135,   132,-32768,-32768,  1928,
  601.    719,   220,-32768,   150,   130,-32768,   171,  1115,   263,   360,
  602. -32768,   294,-32768,   144,-32768,  1220,   188,   227,-32768,-32768,
  603.    294,   205,-32768,  1213,   385,   393,   217,   873,   684,-32768,
  604. -32768,-32768,-32768,-32768,   243,   204,-32768,   411,-32768,-32768,
  605. -32768,   399,   216,   278,-32768,-32768,-32768,  1033,-32768,  1033,
  606. -32768,  1719,-32768,-32768,-32768,-32768,   225,   228,   224,   233,
  607. -32768,   237,  1719,  1719,  1719,  1719,  1719,  1719,  1719,  1719,
  608.   1719,  1719,  1719,  1719,  1719,  1719,  1719,  1719,  1719,  1719,
  609. -32768,-32768,   411,   411,  1719,  1719,-32768,-32768,-32768,   130,
  610.   1274,-32768,   424,   518,-32768,-32768,-32768,-32768,-32768,   393,
  611. -32768,-32768,   290,   316,-32768,   380,-32768,   246,   258,-32768,
  612.     65,    41,-32768,-32768,   281,   312,   415,   373,-32768,   294,
  613. -32768,   188,   227,-32768,  1328,-32768,-32768,   188,  1719,   411,
  614.    272,   204,-32768,-32768,-32768,   279,   291,   295,   314,-32768,
  615. -32768,-32768,   310,   323,  1577,-32768,  1928,  1928,  1928,-32768,
  616.    370,  1941,  1953,  1964,  1059,  1756,  1367,   504,   442,   442,
  617.    421,   421,-32768,-32768,-32768,-32768,-32768,   340,   132,   348,
  618.    218,   375,-32768,   536,-32768,   358,-32768,  1341,-32768,   518,
  619.     40,   371,-32768,-32768,   158,   954,-32768,   374,   226,-32768,
  620. -32768,    97,-32768,-32768,    25,-32768,-32768,-32768,  1307,   364,
  621. -32768,   385,-32768,-32768,-32768,   422,-32768,-32768,   377,-32768,
  622.   1928,-32768,-32768,   379,   387,-32768,-32768,   387,-32768,-32768,
  623. -32768,-32768,-32768,   447,-32768,-32768,-32768,  1719,-32768,-32768,
  624.    424,-32768,-32768,-32768,-32768,-32768,   404,-32768,-32768,-32768,
  625. -32768,   127,   438,   393,-32768,-32768,   393,-32768,-32768,-32768,
  626.   1253,-32768,   493,   224,-32768,-32768,-32768,   425,   625,   313,
  627.    478,    25,-32768,-32768,    25,-32768,-32768,   166,   411,   651,
  628.    447,-32768,   318,  1551,-32768,   252,-32768,  1395,   160,   536,
  629. -32768,-32768,-32768,-32768,-32768,   294,-32768,    95,   448,-32768,
  630.    146,-32768,-32768,-32768,  1928,-32768,-32768,   478,-32768,-32768,
  631.   1719,    22,-32768,   253,   427,   568,   423,   732,-32768,-32768,
  632. -32768,-32768,-32768,   472,   411,  1719,-32768,   477,  1928,   439,
  633.    435,-32768,   438,-32768,-32768,   437,-32768,   266,   293,   122,
  634.    151,   449,   313,   318,-32768,  1885,  1719,-32768,-32768,   411,
  635. -32768,-32768,-32768,   813,   456,-32768,-32768,-32768,-32768,  1477,
  636.    502,  1861,   318,-32768,-32768,  1091,-32768,-32768,-32768,-32768,
  637.    195,   468,-32768,-32768,   483,-32768,  1885,-32768,-32768,  1527,
  638.    508,   503,-32768,-32768,   505,   506,  1719,   529,   500,   520,
  639.   1669,    56,   577,-32768,   560,   523,-32768,   527,   792,-32768,
  640.    590,   894,    32,-32768,-32768,-32768,-32768,-32768,-32768,  1719,
  641.    570,   531,  1152,-32768,-32768,   600,-32768,-32768,-32768,  1719,
  642.    551,-32768,  1719,  1719,  1421,-32768,-32768,-32768,-32768,   537,
  643.   1719,   542,-32768,   554,-32768,-32768,-32768,   294,-32768,    95,
  644.    975,-32768,-32768,-32768,-32768,  1719,  1152,  1836,-32768,-32768,
  645. -32768,   539,   545,  1719,   608,   305,   548,   550,  1719,-32768,
  646. -32768,   555,-32768,  1719,   298,-32768,     2,   347,-32768,   125,
  647. -32768,-32768,  1527,   558,-32768,   599,  1152,   632,-32768,   564,
  648. -32768,-32768,-32768,-32768,  1910,-32768,     7,-32768,   224,-32768,
  649.    224,-32768,-32768,-32768,   565,-32768,-32768,   567,-32768,-32768,
  650.   1719,-32768,-32768,   633,   572,-32768,-32768,-32768,-32768,  1152,
  651. -32768,-32768,-32768,   583,-32768,   585,    18,   602,-32768,-32768,
  652. -32768,-32768,-32768,  1719,   633,   603,   633,  1719,   605,    26,
  653. -32768,-32768,   610,-32768,   316,   615,-32768,   220,   199,-32768,
  654. -32768,   616,   316,-32768,-32768,   220,   688,   699,-32768
  655. };
  656.  
  657. static const short yypgoto[] = {-32768,
  658. -32768,-32768,-32768,   701,-32768,-32768,-32768,-32768,-32768,-32768,
  659. -32768,-32768,    -7,-32768,   -34,-32768,   540,   454,-32768,   -19,
  660. -32768,    87,   215,-32768,  -175,  -102,   517,-32768,-32768,   326,
  661. -32768,    -6,-32768,     9,   662,    14,   661,   543,    -5,  -122,
  662.   -342,   -40,   -96,   -61,-32768,-32768,-32768,  -183,-32768,   306,
  663.    343,-32768,  -324,-32768,  -382,-32768,-32768,-32768,-32768,-32768,
  664. -32768,-32768,-32768,-32768,   -37,   -66,   366,   -13,   -10,-32768,
  665. -32768,-32768,-32768,-32768,   514,    15,-32768,-32768,   512,   381,
  666.    612,   534,    17,   -69,   692,   -72,  -149,   350,-32768,  -173,
  667. -32768,-32768,-32768,   395,  -305,  -112,-32768,-32768,-32768,-32768,
  668.    -87,  -256,  -460,  -333,-32768,   219,-32768,-32768,-32768,-32768,
  669. -32768,-32768,-32768,-32768,-32768,-32768,   222,-32768,  -457,   165,
  670. -32768,   172,-32768,   511,-32768,  -231,-32768,-32768,-32768,   432,
  671.   -182,-32768,-32768,-32768,-32768
  672. };
  673.  
  674.  
  675. #define    YYLAST        2017
  676.  
  677.  
  678. static const short yytable[] = {    76,
  679.     84,    29,    31,    33,    41,   104,   107,   203,   261,   194,
  680.     19,    19,    43,    47,    48,    20,    20,   276,   178,   286,
  681.    252,   287,   313,   408,    90,   334,   224,   197,    94,    86,
  682.    182,   525,   515,   108,   198,   527,   377,   138,   114,   379,
  683.    348,   -94,   115,   133,   134,   574,    55,    86,   167,   136,
  684.    277,   259,   195,   484,   429,   141,   595,   135,    26,    27,
  685.    417,   188,    26,    27,   605,   189,    86,    -1,   -97,   -97,
  686.    -97,   -97,    26,    27,   -97,   180,   -97,   -97,   -97,    26,
  687.     27,   562,   177,   575,  -179,    -2,   203,    90,   140,   445,
  688.    429,   516,   -97,   138,   596,   138,   251,    36,   114,   285,
  689.    521,   311,   606,   578,   194,   290,   501,   223,   482,   583,
  690.    115,   585,   220,   584,   194,   213,   318,   215,   177,    42,
  691.    194,   592,    86,   -94,    86,   297,    34,   297,   407,    36,
  692.    282,   250,    35,   430,   545,    51,   256,   259,   284,   216,
  693.    603,   217,    28,    54,   218,    37,   219,   -97,    94,   119,
  694.    614,    94,    30,   441,    38,   246,   247,    56,   442,    32,
  695.     36,   320,    36,   114,   567,   535,   179,   126,    36,    99,
  696.    289,   450,   252,   332,   404,    91,   389,   326,   333,    92,
  697.    169,    95,    96,   180,    95,    96,   322,   171,   189,   170,
  698.    171,  -278,  -278,  -278,  -278,   325,   328,   591,   418,  -278,
  699.   -278,  -278,   115,   184,   381,   307,   311,  -181,   321,   311,
  700.    326,   142,   422,   143,   427,  -278,   100,   322,   171,   322,
  701.    171,   364,   412,   317,   179,   101,   168,   413,   167,   227,
  702.    228,   229,   446,   232,   233,   234,   235,   236,   237,   238,
  703.    239,   240,   241,   242,   243,   244,   245,   175,   356,   114,
  704.    427,   324,   327,   359,    36,   320,   543,   195,   179,   297,
  705.     48,   120,   390,   489,     5,    36,     7,    83,   169,   179,
  706.    -93,   485,     9,    10,    11,   612,   486,   170,   171,   209,
  707.    613,     5,   199,     7,   176,   210,   200,   338,    13,     9,
  708.     10,    11,   339,   214,   206,   291,    36,    99,    92,   390,
  709.    428,   221,   321,   330,   222,    13,   223,   331,    90,   225,
  710.    382,   322,   171,    37,   226,   369,    94,   470,   393,   370,
  711.    394,    27,    38,   406,    59,    58,    59,   409,    60,   273,
  712.    419,   366,   368,    48,   420,   274,   428,   470,   121,  -219,
  713.    280,   383,   180,   439,   100,   180,    61,   200,   281,    62,
  714.    293,    63,    64,   101,   410,  -227,  -227,   299,    65,   161,
  715.    162,    66,   163,   164,   165,   166,    67,    68,    69,   300,
  716.    440,   301,    70,    71,    92,   558,   395,    72,   396,   200,
  717.    262,   552,   263,     5,     6,     7,     8,   431,   303,   264,
  718.    302,     9,    10,    11,   354,   466,  -163,    73,    74,   305,
  719.    397,     5,    44,     7,    45,    24,    25,    13,   308,     9,
  720.     10,    11,   448,    26,    27,   466,   309,    36,    99,    95,
  721.     96,   179,   465,   340,   560,    13,   500,   375,    92,   608,
  722.    470,   310,   204,   205,   257,   258,   181,   616,   468,   399,
  723.    203,   314,   465,   469,   204,   205,   576,   319,   577,   283,
  724.    329,   312,    95,    96,   502,   523,  -338,   346,   343,   528,
  725.    344,   508,   510,    48,   375,   100,   532,   416,   347,   538,
  726.    537,   158,   159,   160,   101,    46,  -225,  -225,   373,   349,
  727.     57,   544,   432,   257,   258,    58,    59,   355,    60,   550,
  728.    156,   157,   158,   159,   160,   363,   540,   357,   358,   557,
  729.    399,  -258,   365,   447,   274,   421,    61,   411,   466,    62,
  730.    -30,    63,    64,   129,   131,   434,   436,   435,    65,   399,
  731.    438,    66,   399,   111,   112,   443,    67,    68,    69,     9,
  732.     10,    11,    70,    71,   449,   465,   262,    72,   479,     5,
  733.      6,     7,     8,   495,   487,   264,   -31,     9,    10,    11,
  734.    154,   155,   156,   157,   158,   159,   160,    73,    74,   599,
  735.    374,   488,   490,    13,   493,   494,   518,   496,   189,   399,
  736.   -106,  -106,  -106,  -106,  -106,  -106,  -106,   497,  -106,  -106,
  737.   -106,  -106,  -106,   503,  -106,  -106,  -106,  -106,  -106,  -106,
  738.   -106,  -106,  -106,  -106,  -106,  -106,  -106,   498,   505,  -106,
  739.    506,  -106,  -106,   399,   507,   511,   519,   522,  -106,   520,
  740.    524,  -106,  -338,   534,   531,   555,  -106,  -106,  -106,   533,
  741.    548,   549,  -106,  -106,   551,   553,   554,  -106,     5,    44,
  742.      7,    45,   556,   399,   565,   566,     9,    10,    11,   568,
  743.    569,   586,   579,   581,   594,  -106,  -106,  -106,  -106,   590,
  744.   -106,   385,    13,  -278,  -278,  -278,  -278,  -278,  -278,  -278,
  745.    593,  -278,  -278,  -278,  -278,  -278,   399,  -278,  -278,  -278,
  746.   -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,
  747.    601,   604,  -278,   597,  -278,  -278,   607,   618,   110,   111,
  748.    112,  -278,   610,   615,  -278,     9,    10,    11,   619,  -278,
  749.   -278,  -278,   367,    23,   249,  -278,  -278,   526,   278,   109,
  750.   -278,    93,   423,   122,   -26,   -26,   -26,   -26,   444,   260,
  751.    415,   403,   -26,   -26,   -26,   294,   298,   380,  -278,   212,
  752.   -278,  -278,   189,  -278,  -278,  -278,   424,    94,   -26,  -278,
  753.   -278,  -142,  -278,   292,   124,   392,  -278,  -142,  -278,  -278,
  754.   -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,   600,
  755.   -278,   563,   362,  -278,   564,  -278,  -278,   315,   602,     0,
  756.     95,    96,  -278,   161,   162,  -278,   163,   164,   165,   166,
  757.   -278,  -278,  -278,     0,     0,     0,  -278,  -278,  -142,     0,
  758.      0,  -278,  -142,   -26,     0,     5,    44,     7,    45,     0,
  759.      0,     0,     0,     9,    10,    11,     0,     0,     0,  -278,
  760.    426,  -278,  -278,   189,  -278,  -278,  -278,     0,     0,    13,
  761.   -278,  -278,     0,  -278,     0,     0,     0,  -278,     0,  -278,
  762.   -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,
  763.      0,  -278,     0,     0,  -278,     0,  -278,  -278,     0,     0,
  764.      0,     0,     0,  -278,     0,     0,  -278,     0,     0,     0,
  765.      0,  -278,  -278,  -278,     0,     0,     0,  -278,  -278,   509,
  766.      0,     0,  -278,   207,     0,     0,   -22,   -22,   -22,   -22,
  767.      0,     0,     0,     0,   -22,   -22,   -22,     0,     0,     0,
  768.   -278,  -259,  -278,  -278,   512,  -278,  -278,  -278,     0,    94,
  769.    -22,  -278,  -278,  -142,  -278,     0,     0,     0,  -278,  -142,
  770.   -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,  -278,
  771.   -278,     0,  -278,     0,     0,  -278,     0,  -278,  -278,     0,
  772.      0,     0,    95,    96,  -278,     0,     0,  -278,     0,     0,
  773.      0,     0,  -278,  -278,  -278,     0,     0,     0,  -278,  -278,
  774.   -142,     0,     0,  -278,  -142,   -22,    36,     5,    44,     7,
  775.     45,     0,     0,     0,     0,     9,    10,    11,     0,     0,
  776.      0,  -278,     0,  -278,  -278,   541,  -278,  -288,  -288,     0,
  777.      0,    13,  -288,  -288,     0,  -288,     0,     0,     0,  -288,
  778.      0,  -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,  -288,
  779.   -288,  -288,     0,  -288,   326,     0,  -288,     0,  -288,  -288,
  780.      0,     0,     0,   322,   171,  -288,     0,     0,  -288,     0,
  781.      0,     0,     0,  -288,  -288,  -288,     0,     0,     0,  -288,
  782.   -288,     0,     0,   137,  -288,    57,     5,     0,     7,    83,
  783.     58,    59,     0,    60,     9,    10,    11,     0,     0,     0,
  784.      0,     0,  -288,     0,  -288,  -288,     0,  -288,     0,     0,
  785.     13,    61,     0,     0,    62,     0,    63,    64,     0,     0,
  786.      0,     0,     0,    65,     0,     0,    66,     0,     0,     0,
  787.      0,    67,    68,    69,     0,     0,     0,    70,    71,     0,
  788.      0,   393,    72,   394,    27,     0,     0,     0,    58,    59,
  789.      0,    60,   151,   152,   153,   154,   155,   156,   157,   158,
  790.    159,   160,    73,    74,     0,   -83,     0,     0,     5,    61,
  791.      7,   176,    62,     0,    63,    64,     9,    10,    11,     0,
  792.      0,    65,     0,     0,    66,     0,     0,     0,     0,    67,
  793.     68,    69,    13,     0,     0,    70,    71,     0,     0,   395,
  794.     72,   396,   393,     0,   394,    27,     0,     0,     0,    58,
  795.     59,     0,    60,     0,     0,   169,     0,     0,     0,  -216,
  796.     73,    74,     0,   397,   170,   171,     0,     0,     0,     0,
  797.     61,     0,     0,    62,     0,    63,    64,     0,     0,     0,
  798.      0,     0,    65,     0,     0,    66,     0,     0,     0,     0,
  799.     67,    68,    69,     0,     0,     0,    70,    71,     0,     0,
  800.    395,    72,   396,   201,     0,     0,   -18,   -18,   -18,   -18,
  801.      0,     0,    57,     0,   -18,   -18,   -18,    58,    59,     0,
  802.     60,    73,    74,     0,   397,     0,     0,     0,     0,    94,
  803.    -18,     0,     0,  -142,     0,     0,     0,     0,    61,  -142,
  804.      0,    62,     0,    63,    64,     0,     5,     6,     7,     8,
  805.     65,     0,   361,    66,     9,    10,    11,     0,    67,    68,
  806.     69,     0,     0,     0,    70,    71,    57,     0,     0,    72,
  807.     13,    58,    59,     0,    60,     0,     0,     0,     0,     0,
  808.   -142,     0,     0,     0,  -142,   -18,     0,     0,     0,    73,
  809.     74,     0,    61,   187,     0,    62,     0,    63,    64,     0,
  810.      5,     6,     7,     8,    65,     0,     0,    66,     9,    10,
  811.     11,     0,    67,    68,    69,     0,     0,     0,    70,    71,
  812.     57,     0,     0,    72,    13,    58,    59,     0,    60,     0,
  813.      0,     0,     0,    57,     0,     0,     0,     0,    58,    59,
  814.      0,    60,     0,    73,    74,     0,    61,   255,     0,    62,
  815.      0,    63,    64,     0,     0,     0,     0,     0,    65,    61,
  816.      0,    66,    62,     0,    63,    64,    67,    68,    69,     0,
  817.      0,    65,    70,    71,    66,     0,     0,    72,     0,    67,
  818.     68,    69,     0,     0,     0,    70,    71,    57,     0,     0,
  819.     72,     0,    58,    59,     0,    60,     0,    73,    74,     0,
  820.      0,   288,   153,   154,   155,   156,   157,   158,   159,   160,
  821.     73,    74,     0,    61,   316,     0,    62,     0,    63,    64,
  822.    529,     0,     0,     0,     0,    65,     0,     0,    66,     0,
  823.      0,     0,     0,    67,    68,    69,     0,     0,     0,    70,
  824.     71,     0,     0,     0,    72,     0,   144,   145,   146,   530,
  825.    147,   148,   149,   150,   151,   152,   153,   154,   155,   156,
  826.    157,   158,   159,   160,    73,    74,     0,     0,   405,   394,
  827.    451,     6,     7,     8,    58,    59,     0,    60,     9,    10,
  828.     11,   452,     0,   453,   454,   455,   456,   457,   458,   459,
  829.    460,   461,   462,   463,    13,    61,     0,     0,    62,     0,
  830.     63,    64,     0,     0,     0,     0,     0,    65,     0,     0,
  831.     66,     0,     0,     0,     0,    67,    68,    69,     0,   394,
  832.     27,    70,    71,     0,    58,    59,    72,    60,     0,     0,
  833.      0,   452,     0,   453,   454,   455,   456,   457,   458,   459,
  834.    460,   461,   462,   463,   464,    61,    73,    74,    62,   223,
  835.     63,    64,     0,     0,     0,     0,     0,    65,     0,     0,
  836.     66,     0,     0,     0,     0,    67,    68,    69,     0,    57,
  837.      0,    70,    71,     0,    58,    59,    72,    60,   146,     0,
  838.    147,   148,   149,   150,   151,   152,   153,   154,   155,   156,
  839.    157,   158,   159,   160,   464,    61,    73,    74,    62,   223,
  840.     63,    64,     0,     0,     0,     0,     0,    65,     0,     0,
  841.     66,     0,     0,     0,     0,    67,    68,    69,     0,     0,
  842.      0,    70,    71,     0,     0,     0,    72,    57,     5,     0,
  843.      7,    83,    58,    59,     0,    60,     9,    10,    11,     0,
  844.      0,     0,     0,     0,     0,     0,    73,    74,     0,   306,
  845.      0,     0,    13,    61,     0,     0,    62,     0,    63,    64,
  846.      0,    57,     0,     0,     0,    65,    58,    59,    66,    60,
  847.      0,     0,     0,    67,    68,    69,     0,     0,     0,    70,
  848.     71,     0,     0,     0,    72,     0,     0,    61,     0,     0,
  849.     62,     0,    63,    64,     0,     0,     0,     0,     0,    65,
  850.      0,     0,    66,     0,    73,    74,     0,    67,    68,    69,
  851.      0,    57,     0,    70,    71,     0,    58,    59,    72,    60,
  852.      0,     0,     0,     0,    57,     0,     0,     0,     0,    58,
  853.     59,     0,    60,     0,     0,     0,   499,    61,    73,    74,
  854.     62,     0,    63,    64,     0,     0,     0,     0,     0,    65,
  855.     61,     0,    66,    62,     0,    63,    64,    67,    68,    69,
  856.      0,     0,    65,    70,    71,    66,     0,     0,    72,     0,
  857.     67,    68,    69,     0,    57,     0,    70,    71,     0,    58,
  858.     59,   128,    60,     0,     0,     0,     0,     0,    73,    74,
  859.    152,   153,   154,   155,   156,   157,   158,   159,   160,     0,
  860.     61,    73,    74,    62,     0,    63,    64,     0,     0,     0,
  861.      0,     0,    65,     0,     0,    66,     0,     0,     0,     0,
  862.     67,    68,    69,     0,     0,     0,    70,    71,     0,     0,
  863.      4,   130,  -110,     5,     6,     7,     8,     0,     0,     0,
  864.      0,     9,    10,    11,     0,     0,     0,     0,     0,     0,
  865.      0,    73,    74,     0,     0,     0,    12,    13,     0,     0,
  866.    480,   144,   145,   146,     0,   147,   148,   149,   150,   151,
  867.    152,   153,   154,   155,   156,   157,   158,   159,   160,     0,
  868.   -110,     0,     0,     0,     0,     0,   144,   145,   146,  -110,
  869.    147,   148,   149,   150,   151,   152,   153,   154,   155,   156,
  870.    157,   158,   159,   160,     0,   195,     0,    14,     0,   546,
  871.    144,   145,   146,     0,   147,   148,   149,   150,   151,   152,
  872.    153,   154,   155,   156,   157,   158,   159,   160,     0,     0,
  873.      0,     0,     0,     0,   481,   144,   145,   146,   573,   147,
  874.    148,   149,   150,   151,   152,   153,   154,   155,   156,   157,
  875.    158,   159,   160,   144,   145,   146,     0,   147,   148,   149,
  876.    150,   151,   152,   153,   154,   155,   156,   157,   158,   159,
  877.    160,   148,   149,   150,   151,   152,   153,   154,   155,   156,
  878.    157,   158,   159,   160,   149,   150,   151,   152,   153,   154,
  879.    155,   156,   157,   158,   159,   160,   150,   151,   152,   153,
  880.    154,   155,   156,   157,   158,   159,   160
  881. };
  882.  
  883. static const short yycheck[] = {    34,
  884.     35,     9,    10,    11,    18,    43,    47,   104,   184,    97,
  885.      2,     3,    19,    20,    20,     2,     3,   191,    88,   203,
  886.    170,   204,   254,   366,    38,     1,   139,   100,    27,    35,
  887.     92,   492,     1,    47,   101,   493,   342,    72,    49,   345,
  888.    297,     1,    50,    63,    64,    39,    32,    53,     9,    69,
  889.     10,   174,    31,   436,   388,    75,    39,    65,     3,     4,
  890.     39,    96,     3,     4,    39,     1,    72,     0,     4,     5,
  891.      6,     7,     3,     4,    10,    89,    12,    13,    14,     3,
  892.      4,   542,    88,    77,    83,     0,   183,   101,    72,   414,
  893.    424,    60,    28,   128,    77,   130,   169,     3,   109,   202,
  894.    483,   251,    77,   564,   192,   208,    51,    83,   433,   570,
  895.    118,   572,   132,   571,   202,   122,    77,   124,   124,    78,
  896.    208,   582,   128,    83,   130,   213,    60,   215,   360,     3,
  897.    197,   166,    60,   390,   517,    83,   171,   260,   200,   125,
  898.    598,   127,    83,    83,   128,    51,   130,    83,    27,    79,
  899.    611,    27,    83,     3,    60,   163,   164,    83,     8,    83,
  900.      3,     4,     3,   174,   547,   508,     7,    79,     3,     4,
  901.    205,   428,   322,    77,   357,    78,   350,    51,    82,    82,
  902.     51,    60,    61,   197,    60,    61,    60,    61,     1,    60,
  903.     61,     4,     5,     6,     7,   265,   266,   580,   382,    12,
  904.     13,    14,   210,    60,    39,   225,   356,    83,    51,   359,
  905.     51,    77,   386,    82,   388,    28,    51,    60,    61,    60,
  906.     61,   334,    77,   258,     7,    60,    77,    82,     9,   143,
  907.    144,   145,   416,   147,   148,   149,   150,   151,   152,   153,
  908.    154,   155,   156,   157,   158,   159,   160,    77,   321,   260,
  909.    424,   265,   266,   326,     3,     4,   513,    31,     7,   347,
  910.    266,     1,   350,   447,     4,     3,     6,     7,    51,     7,
  911.     83,    77,    12,    13,    14,    77,    82,    60,    61,    37,
  912.     82,     4,    78,     6,     7,    82,    82,   279,    28,    12,
  913.     13,    14,   279,    78,    78,   209,     3,     4,    82,   387,
  914.    388,    77,    51,    78,    77,    28,    83,    82,   322,    77,
  915.    348,    60,    61,    51,    78,     3,    27,   430,     1,     7,
  916.      3,     4,    60,   358,     9,     8,     9,   368,    11,    84,
  917.     78,   338,   339,   339,    82,    78,   424,   450,    78,    79,
  918.     60,   349,   356,    78,    51,   359,    29,    82,    37,    32,
  919.     79,    34,    35,    60,   368,    78,    79,    79,    41,    55,
  920.     56,    44,    58,    59,    60,    61,    49,    50,    51,    79,
  921.     78,    77,    55,    56,    82,    78,    59,    60,    61,    82,
  922.      1,    77,     3,     4,     5,     6,     7,   395,    79,    10,
  923.     77,    12,    13,    14,   308,   430,    79,    80,    81,    77,
  924.     83,     4,     5,     6,     7,    78,    79,    28,    39,    12,
  925.     13,    14,   420,     3,     4,   450,    77,     3,     4,    60,
  926.     61,     7,   430,    60,    78,    28,   461,   341,    82,   605,
  927.    543,    84,    60,    61,    60,    61,    77,   613,   430,   353,
  928.    537,    84,   450,   430,    60,    61,   559,    77,   561,    77,
  929.     77,    77,    60,    61,   462,   490,    77,    79,    37,   494,
  930.     84,   468,   469,   469,   378,    51,   501,   381,    82,   510,
  931.    508,    51,    52,    53,    60,    78,    78,    79,     1,    33,
  932.      3,   516,   396,    60,    61,     8,     9,    84,    11,   524,
  933.     49,    50,    51,    52,    53,     3,   510,    60,    61,   534,
  934.    414,    79,    78,   417,    78,    79,    29,    60,   543,    32,
  935.     39,    34,    35,    60,    61,    39,    82,    79,    41,   433,
  936.     84,    44,   436,     6,     7,    77,    49,    50,    51,    12,
  937.     13,    14,    55,    56,    79,   543,     1,    60,    37,     4,
  938.      5,     6,     7,   457,    77,    10,    39,    12,    13,    14,
  939.     47,    48,    49,    50,    51,    52,    53,    80,    81,   594,
  940.     83,    79,    60,    28,    60,    60,   480,    39,     1,   483,
  941.      3,     4,     5,     6,     7,     8,     9,    78,    11,    12,
  942.     13,    14,    15,     7,    17,    18,    19,    20,    21,    22,
  943.     23,    24,    25,    26,    27,    28,    29,    78,    39,    32,
  944.     78,    34,    35,   517,    78,    16,    37,     8,    41,    79,
  945.     60,    44,    77,    60,    78,   529,    49,    50,    51,    78,
  946.     82,    77,    55,    56,    17,    78,    77,    60,     4,     5,
  947.      6,     7,    78,   547,    77,    37,    12,    13,    14,     8,
  948.     77,     9,    78,    77,    60,    78,    79,    80,    81,    78,
  949.     83,     1,    28,     3,     4,     5,     6,     7,     8,     9,
  950.     78,    11,    12,    13,    14,    15,   580,    17,    18,    19,
  951.     20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
  952.     78,    77,    32,    82,    34,    35,    77,     0,     5,     6,
  953.      7,    41,    78,    78,    44,    12,    13,    14,     0,    49,
  954.     50,    51,    78,     3,   165,    55,    56,   493,   192,    48,
  955.     60,     1,   387,    53,     4,     5,     6,     7,   413,   177,
  956.    378,   356,    12,    13,    14,   212,   215,   347,    78,   118,
  957.     80,    81,     1,    83,     3,     4,   387,    27,    28,     8,
  958.      9,    31,    11,   210,    53,   351,    15,    37,    17,    18,
  959.     19,    20,    21,    22,    23,    24,    25,    26,    27,   595,
  960.     29,   543,   331,    32,   543,    34,    35,   257,   597,    -1,
  961.     60,    61,    41,    55,    56,    44,    58,    59,    60,    61,
  962.     49,    50,    51,    -1,    -1,    -1,    55,    56,    78,    -1,
  963.     -1,    60,    82,    83,    -1,     4,     5,     6,     7,    -1,
  964.     -1,    -1,    -1,    12,    13,    14,    -1,    -1,    -1,    78,
  965.     79,    80,    81,     1,    83,     3,     4,    -1,    -1,    28,
  966.      8,     9,    -1,    11,    -1,    -1,    -1,    15,    -1,    17,
  967.     18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
  968.     -1,    29,    -1,    -1,    32,    -1,    34,    35,    -1,    -1,
  969.     -1,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,
  970.     -1,    49,    50,    51,    -1,    -1,    -1,    55,    56,    78,
  971.     -1,    -1,    60,     1,    -1,    -1,     4,     5,     6,     7,
  972.     -1,    -1,    -1,    -1,    12,    13,    14,    -1,    -1,    -1,
  973.     78,    79,    80,    81,     1,    83,     3,     4,    -1,    27,
  974.     28,     8,     9,    31,    11,    -1,    -1,    -1,    15,    37,
  975.     17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
  976.     27,    -1,    29,    -1,    -1,    32,    -1,    34,    35,    -1,
  977.     -1,    -1,    60,    61,    41,    -1,    -1,    44,    -1,    -1,
  978.     -1,    -1,    49,    50,    51,    -1,    -1,    -1,    55,    56,
  979.     78,    -1,    -1,    60,    82,    83,     3,     4,     5,     6,
  980.      7,    -1,    -1,    -1,    -1,    12,    13,    14,    -1,    -1,
  981.     -1,    78,    -1,    80,    81,     1,    83,     3,     4,    -1,
  982.     -1,    28,     8,     9,    -1,    11,    -1,    -1,    -1,    15,
  983.     -1,    17,    18,    19,    20,    21,    22,    23,    24,    25,
  984.     26,    27,    -1,    29,    51,    -1,    32,    -1,    34,    35,
  985.     -1,    -1,    -1,    60,    61,    41,    -1,    -1,    44,    -1,
  986.     -1,    -1,    -1,    49,    50,    51,    -1,    -1,    -1,    55,
  987.     56,    -1,    -1,     1,    60,     3,     4,    -1,     6,     7,
  988.      8,     9,    -1,    11,    12,    13,    14,    -1,    -1,    -1,
  989.     -1,    -1,    78,    -1,    80,    81,    -1,    83,    -1,    -1,
  990.     28,    29,    -1,    -1,    32,    -1,    34,    35,    -1,    -1,
  991.     -1,    -1,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,
  992.     -1,    49,    50,    51,    -1,    -1,    -1,    55,    56,    -1,
  993.     -1,     1,    60,     3,     4,    -1,    -1,    -1,     8,     9,
  994.     -1,    11,    44,    45,    46,    47,    48,    49,    50,    51,
  995.     52,    53,    80,    81,    -1,    83,    -1,    -1,     4,    29,
  996.      6,     7,    32,    -1,    34,    35,    12,    13,    14,    -1,
  997.     -1,    41,    -1,    -1,    44,    -1,    -1,    -1,    -1,    49,
  998.     50,    51,    28,    -1,    -1,    55,    56,    -1,    -1,    59,
  999.     60,    61,     1,    -1,     3,     4,    -1,    -1,    -1,     8,
  1000.      9,    -1,    11,    -1,    -1,    51,    -1,    -1,    -1,    79,
  1001.     80,    81,    -1,    83,    60,    61,    -1,    -1,    -1,    -1,
  1002.     29,    -1,    -1,    32,    -1,    34,    35,    -1,    -1,    -1,
  1003.     -1,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,    -1,
  1004.     49,    50,    51,    -1,    -1,    -1,    55,    56,    -1,    -1,
  1005.     59,    60,    61,     1,    -1,    -1,     4,     5,     6,     7,
  1006.     -1,    -1,     3,    -1,    12,    13,    14,     8,     9,    -1,
  1007.     11,    80,    81,    -1,    83,    -1,    -1,    -1,    -1,    27,
  1008.     28,    -1,    -1,    31,    -1,    -1,    -1,    -1,    29,    37,
  1009.     -1,    32,    -1,    34,    35,    -1,     4,     5,     6,     7,
  1010.     41,    -1,    10,    44,    12,    13,    14,    -1,    49,    50,
  1011.     51,    -1,    -1,    -1,    55,    56,     3,    -1,    -1,    60,
  1012.     28,     8,     9,    -1,    11,    -1,    -1,    -1,    -1,    -1,
  1013.     78,    -1,    -1,    -1,    82,    83,    -1,    -1,    -1,    80,
  1014.     81,    -1,    29,    84,    -1,    32,    -1,    34,    35,    -1,
  1015.      4,     5,     6,     7,    41,    -1,    -1,    44,    12,    13,
  1016.     14,    -1,    49,    50,    51,    -1,    -1,    -1,    55,    56,
  1017.      3,    -1,    -1,    60,    28,     8,     9,    -1,    11,    -1,
  1018.     -1,    -1,    -1,     3,    -1,    -1,    -1,    -1,     8,     9,
  1019.     -1,    11,    -1,    80,    81,    -1,    29,    84,    -1,    32,
  1020.     -1,    34,    35,    -1,    -1,    -1,    -1,    -1,    41,    29,
  1021.     -1,    44,    32,    -1,    34,    35,    49,    50,    51,    -1,
  1022.     -1,    41,    55,    56,    44,    -1,    -1,    60,    -1,    49,
  1023.     50,    51,    -1,    -1,    -1,    55,    56,     3,    -1,    -1,
  1024.     60,    -1,     8,     9,    -1,    11,    -1,    80,    81,    -1,
  1025.     -1,    84,    46,    47,    48,    49,    50,    51,    52,    53,
  1026.     80,    81,    -1,    29,    84,    -1,    32,    -1,    34,    35,
  1027.     10,    -1,    -1,    -1,    -1,    41,    -1,    -1,    44,    -1,
  1028.     -1,    -1,    -1,    49,    50,    51,    -1,    -1,    -1,    55,
  1029.     56,    -1,    -1,    -1,    60,    -1,    36,    37,    38,    39,
  1030.     40,    41,    42,    43,    44,    45,    46,    47,    48,    49,
  1031.     50,    51,    52,    53,    80,    81,    -1,    -1,    84,     3,
  1032.      4,     5,     6,     7,     8,     9,    -1,    11,    12,    13,
  1033.     14,    15,    -1,    17,    18,    19,    20,    21,    22,    23,
  1034.     24,    25,    26,    27,    28,    29,    -1,    -1,    32,    -1,
  1035.     34,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,
  1036.     44,    -1,    -1,    -1,    -1,    49,    50,    51,    -1,     3,
  1037.      4,    55,    56,    -1,     8,     9,    60,    11,    -1,    -1,
  1038.     -1,    15,    -1,    17,    18,    19,    20,    21,    22,    23,
  1039.     24,    25,    26,    27,    78,    29,    80,    81,    32,    83,
  1040.     34,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,
  1041.     44,    -1,    -1,    -1,    -1,    49,    50,    51,    -1,     3,
  1042.     -1,    55,    56,    -1,     8,     9,    60,    11,    38,    -1,
  1043.     40,    41,    42,    43,    44,    45,    46,    47,    48,    49,
  1044.     50,    51,    52,    53,    78,    29,    80,    81,    32,    83,
  1045.     34,    35,    -1,    -1,    -1,    -1,    -1,    41,    -1,    -1,
  1046.     44,    -1,    -1,    -1,    -1,    49,    50,    51,    -1,    -1,
  1047.     -1,    55,    56,    -1,    -1,    -1,    60,     3,     4,    -1,
  1048.      6,     7,     8,     9,    -1,    11,    12,    13,    14,    -1,
  1049.     -1,    -1,    -1,    -1,    -1,    -1,    80,    81,    -1,    83,
  1050.     -1,    -1,    28,    29,    -1,    -1,    32,    -1,    34,    35,
  1051.     -1,     3,    -1,    -1,    -1,    41,     8,     9,    44,    11,
  1052.     -1,    -1,    -1,    49,    50,    51,    -1,    -1,    -1,    55,
  1053.     56,    -1,    -1,    -1,    60,    -1,    -1,    29,    -1,    -1,
  1054.     32,    -1,    34,    35,    -1,    -1,    -1,    -1,    -1,    41,
  1055.     -1,    -1,    44,    -1,    80,    81,    -1,    49,    50,    51,
  1056.     -1,     3,    -1,    55,    56,    -1,     8,     9,    60,    11,
  1057.     -1,    -1,    -1,    -1,     3,    -1,    -1,    -1,    -1,     8,
  1058.      9,    -1,    11,    -1,    -1,    -1,    78,    29,    80,    81,
  1059.     32,    -1,    34,    35,    -1,    -1,    -1,    -1,    -1,    41,
  1060.     29,    -1,    44,    32,    -1,    34,    35,    49,    50,    51,
  1061.     -1,    -1,    41,    55,    56,    44,    -1,    -1,    60,    -1,
  1062.     49,    50,    51,    -1,     3,    -1,    55,    56,    -1,     8,
  1063.      9,    60,    11,    -1,    -1,    -1,    -1,    -1,    80,    81,
  1064.     45,    46,    47,    48,    49,    50,    51,    52,    53,    -1,
  1065.     29,    80,    81,    32,    -1,    34,    35,    -1,    -1,    -1,
  1066.     -1,    -1,    41,    -1,    -1,    44,    -1,    -1,    -1,    -1,
  1067.     49,    50,    51,    -1,    -1,    -1,    55,    56,    -1,    -1,
  1068.      1,    60,     3,     4,     5,     6,     7,    -1,    -1,    -1,
  1069.     -1,    12,    13,    14,    -1,    -1,    -1,    -1,    -1,    -1,
  1070.     -1,    80,    81,    -1,    -1,    -1,    27,    28,    -1,    -1,
  1071.     10,    36,    37,    38,    -1,    40,    41,    42,    43,    44,
  1072.     45,    46,    47,    48,    49,    50,    51,    52,    53,    -1,
  1073.     51,    -1,    -1,    -1,    -1,    -1,    36,    37,    38,    60,
  1074.     40,    41,    42,    43,    44,    45,    46,    47,    48,    49,
  1075.     50,    51,    52,    53,    -1,    31,    -1,    78,    -1,    84,
  1076.     36,    37,    38,    -1,    40,    41,    42,    43,    44,    45,
  1077.     46,    47,    48,    49,    50,    51,    52,    53,    -1,    -1,
  1078.     -1,    -1,    -1,    -1,    84,    36,    37,    38,    39,    40,
  1079.     41,    42,    43,    44,    45,    46,    47,    48,    49,    50,
  1080.     51,    52,    53,    36,    37,    38,    -1,    40,    41,    42,
  1081.     43,    44,    45,    46,    47,    48,    49,    50,    51,    52,
  1082.     53,    41,    42,    43,    44,    45,    46,    47,    48,    49,
  1083.     50,    51,    52,    53,    42,    43,    44,    45,    46,    47,
  1084.     48,    49,    50,    51,    52,    53,    43,    44,    45,    46,
  1085.     47,    48,    49,    50,    51,    52,    53
  1086. };
  1087. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  1088. #line 3 "/usr/lib/bison.simple"
  1089.  
  1090. /* Skeleton output parser for bison,
  1091.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  1092.  
  1093.    This program is free software; you can redistribute it and/or modify
  1094.    it under the terms of the GNU General Public License as published by
  1095.    the Free Software Foundation; either version 1, or (at your option)
  1096.    any later version.
  1097.  
  1098.    This program is distributed in the hope that it will be useful,
  1099.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  1100.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  1101.    GNU General Public License for more details.
  1102.  
  1103.    You should have received a copy of the GNU General Public License
  1104.    along with this program; if not, write to the Free Software
  1105.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  1106.  
  1107.  
  1108. #ifndef alloca
  1109. #ifdef __GNUC__
  1110. #define alloca __builtin_alloca
  1111. #else /* not GNU C.  */
  1112. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
  1113. #include <alloca.h>
  1114. #else /* not sparc */
  1115. #if defined (MSDOS) && !defined (__TURBOC__)
  1116. #include <malloc.h>
  1117. #else /* not MSDOS, or __TURBOC__ */
  1118. #if defined(_AIX)
  1119. #include <malloc.h>
  1120.  #pragma alloca
  1121. #else /* not MSDOS, __TURBOC__, or _AIX */
  1122. #ifdef __hpux
  1123. #ifdef __cplusplus
  1124. extern "C" {
  1125. void *alloca (unsigned int);
  1126. };
  1127. #else /* not __cplusplus */
  1128. void *alloca ();
  1129. #endif /* not __cplusplus */
  1130. #endif /* __hpux */
  1131. #endif /* not _AIX */
  1132. #endif /* not MSDOS, or __TURBOC__ */
  1133. #endif /* not sparc.  */
  1134. #endif /* not GNU C.  */
  1135. #endif /* alloca not defined.  */
  1136.  
  1137. /* This is the parser code that is written into each bison parser
  1138.   when the %semantic_parser declaration is not specified in the grammar.
  1139.   It was written by Richard Stallman by simplifying the hairy parser
  1140.   used when %semantic_parser is specified.  */
  1141.  
  1142. /* Note: there must be only one dollar sign in this file.
  1143.    It is replaced by the list of actions, each action
  1144.    as one case of the switch.  */
  1145.  
  1146. #define yyerrok        (yyerrstatus = 0)
  1147. #define yyclearin    (yychar = YYEMPTY)
  1148. #define YYEMPTY        -2
  1149. #define YYEOF        0
  1150. #define YYACCEPT    return(0)
  1151. #define YYABORT     return(1)
  1152. #define YYERROR        goto yyerrlab1
  1153. /* Like YYERROR except do call yyerror.
  1154.    This remains here temporarily to ease the
  1155.    transition to the new meaning of YYERROR, for GCC.
  1156.    Once GCC version 2 has supplanted version 1, this can go.  */
  1157. #define YYFAIL        goto yyerrlab
  1158. #define YYRECOVERING()  (!!yyerrstatus)
  1159. #define YYBACKUP(token, value) \
  1160. do                                \
  1161.   if (yychar == YYEMPTY && yylen == 1)                \
  1162.     { yychar = (token), yylval = (value);            \
  1163.       yychar1 = YYTRANSLATE (yychar);                \
  1164.       YYPOPSTACK;                        \
  1165.       goto yybackup;                        \
  1166.     }                                \
  1167.   else                                \
  1168.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  1169. while (0)
  1170.  
  1171. #define YYTERROR    1
  1172. #define YYERRCODE    256
  1173.  
  1174. #ifndef YYPURE
  1175. #define YYLEX        yylex()
  1176. #endif
  1177.  
  1178. #ifdef YYPURE
  1179. #ifdef YYLSP_NEEDED
  1180. #define YYLEX        yylex(&yylval, &yylloc)
  1181. #else
  1182. #define YYLEX        yylex(&yylval)
  1183. #endif
  1184. #endif
  1185.  
  1186. /* If nonreentrant, generate the variables here */
  1187.  
  1188. #ifndef YYPURE
  1189.  
  1190. int    yychar;            /*  the lookahead symbol        */
  1191. YYSTYPE    yylval;            /*  the semantic value of the        */
  1192.                 /*  lookahead symbol            */
  1193.  
  1194. #ifdef YYLSP_NEEDED
  1195. YYLTYPE yylloc;            /*  location data for the lookahead    */
  1196.                 /*  symbol                */
  1197. #endif
  1198.  
  1199. int yynerrs;            /*  number of parse errors so far       */
  1200. #endif  /* not YYPURE */
  1201.  
  1202. #if YYDEBUG != 0
  1203. int yydebug;            /*  nonzero means print parse trace    */
  1204. /* Since this is uninitialized, it does not stop multiple parsers
  1205.    from coexisting.  */
  1206. #endif
  1207.  
  1208. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  1209.  
  1210. #ifndef    YYINITDEPTH
  1211. #define YYINITDEPTH 200
  1212. #endif
  1213.  
  1214. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  1215.     (effective only if the built-in stack extension method is used).  */
  1216.  
  1217. #if YYMAXDEPTH == 0
  1218. #undef YYMAXDEPTH
  1219. #endif
  1220.  
  1221. #ifndef YYMAXDEPTH
  1222. #define YYMAXDEPTH 10000
  1223. #endif
  1224.  
  1225. /* Prevent warning if -Wstrict-prototypes.  */
  1226. #ifdef __GNUC__
  1227. int yyparse (void);
  1228. #endif
  1229.  
  1230. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  1231. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  1232. #else                /* not GNU C or C++ */
  1233. #ifndef __cplusplus
  1234.  
  1235. /* This is the most reliable way to avoid incompatibilities
  1236.    in available built-in functions on various systems.  */
  1237. static void
  1238. __yy_bcopy (from, to, count)
  1239.      char *from;
  1240.      char *to;
  1241.      int count;
  1242. {
  1243.   register char *f = from;
  1244.   register char *t = to;
  1245.   register int i = count;
  1246.  
  1247.   while (i-- > 0)
  1248.     *t++ = *f++;
  1249. }
  1250.  
  1251. #else /* __cplusplus */
  1252.  
  1253. /* This is the most reliable way to avoid incompatibilities
  1254.    in available built-in functions on various systems.  */
  1255. static void
  1256. __yy_bcopy (char *from, char *to, int count)
  1257. {
  1258.   register char *f = from;
  1259.   register char *t = to;
  1260.   register int i = count;
  1261.  
  1262.   while (i-- > 0)
  1263.     *t++ = *f++;
  1264. }
  1265.  
  1266. #endif
  1267. #endif
  1268.  
  1269. #line 184 "/usr/lib/bison.simple"
  1270. int
  1271. yyparse()
  1272. {
  1273.   register int yystate;
  1274.   register int yyn;
  1275.   register short *yyssp;
  1276.   register YYSTYPE *yyvsp;
  1277.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  1278.   int yychar1 = 0;        /*  lookahead token as an internal (translated) token number */
  1279.  
  1280.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  1281.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  1282.  
  1283.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  1284.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  1285.  
  1286. #ifdef YYLSP_NEEDED
  1287.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  1288.   YYLTYPE *yyls = yylsa;
  1289.   YYLTYPE *yylsp;
  1290.  
  1291. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  1292. #else
  1293. #define YYPOPSTACK   (yyvsp--, yyssp--)
  1294. #endif
  1295.  
  1296.   int yystacksize = YYINITDEPTH;
  1297.  
  1298. #ifdef YYPURE
  1299.   int yychar;
  1300.   YYSTYPE yylval;
  1301.   int yynerrs;
  1302. #ifdef YYLSP_NEEDED
  1303.   YYLTYPE yylloc;
  1304. #endif
  1305. #endif
  1306.  
  1307.   YYSTYPE yyval;        /*  the variable used to return        */
  1308.                 /*  semantic values from the action    */
  1309.                 /*  routines                */
  1310.  
  1311.   int yylen;
  1312.  
  1313. #if YYDEBUG != 0
  1314.   if (yydebug)
  1315.     fprintf(stderr, "Starting parse\n");
  1316. #endif
  1317.  
  1318.   yystate = 0;
  1319.   yyerrstatus = 0;
  1320.   yynerrs = 0;
  1321.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  1322.  
  1323.   /* Initialize stack pointers.
  1324.      Waste one element of value and location stack
  1325.      so that they stay on the same level as the state stack.
  1326.      The wasted elements are never initialized.  */
  1327.  
  1328.   yyssp = yyss - 1;
  1329.   yyvsp = yyvs;
  1330. #ifdef YYLSP_NEEDED
  1331.   yylsp = yyls;
  1332. #endif
  1333.  
  1334. /* Push a new state, which is found in  yystate  .  */
  1335. /* In all cases, when you get here, the value and location stacks
  1336.    have just been pushed. so pushing a state here evens the stacks.  */
  1337. yynewstate:
  1338.  
  1339.   *++yyssp = yystate;
  1340.  
  1341.   if (yyssp >= yyss + yystacksize - 1)
  1342.     {
  1343.       /* Give user a chance to reallocate the stack */
  1344.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  1345.       YYSTYPE *yyvs1 = yyvs;
  1346.       short *yyss1 = yyss;
  1347. #ifdef YYLSP_NEEDED
  1348.       YYLTYPE *yyls1 = yyls;
  1349. #endif
  1350.  
  1351.       /* Get the current used size of the three stacks, in elements.  */
  1352.       int size = yyssp - yyss + 1;
  1353.  
  1354. #ifdef yyoverflow
  1355.       /* Each stack pointer address is followed by the size of
  1356.      the data in use in that stack, in bytes.  */
  1357. #ifdef YYLSP_NEEDED
  1358.       /* This used to be a conditional around just the two extra args,
  1359.      but that might be undefined if yyoverflow is a macro.  */
  1360.       yyoverflow("parser stack overflow",
  1361.          &yyss1, size * sizeof (*yyssp),
  1362.          &yyvs1, size * sizeof (*yyvsp),
  1363.          &yyls1, size * sizeof (*yylsp),
  1364.          &yystacksize);
  1365. #else
  1366.       yyoverflow("parser stack overflow",
  1367.          &yyss1, size * sizeof (*yyssp),
  1368.          &yyvs1, size * sizeof (*yyvsp),
  1369.          &yystacksize);
  1370. #endif
  1371.  
  1372.       yyss = yyss1; yyvs = yyvs1;
  1373. #ifdef YYLSP_NEEDED
  1374.       yyls = yyls1;
  1375. #endif
  1376. #else /* no yyoverflow */
  1377.       /* Extend the stack our own way.  */
  1378.       if (yystacksize >= YYMAXDEPTH)
  1379.     {
  1380.       yyerror("parser stack overflow");
  1381.       return 2;
  1382.     }
  1383.       yystacksize *= 2;
  1384.       if (yystacksize > YYMAXDEPTH)
  1385.     yystacksize = YYMAXDEPTH;
  1386.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  1387.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  1388.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  1389.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  1390. #ifdef YYLSP_NEEDED
  1391.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  1392.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  1393. #endif
  1394. #endif /* no yyoverflow */
  1395.  
  1396.       yyssp = yyss + size - 1;
  1397.       yyvsp = yyvs + size - 1;
  1398. #ifdef YYLSP_NEEDED
  1399.       yylsp = yyls + size - 1;
  1400. #endif
  1401.  
  1402. #if YYDEBUG != 0
  1403.       if (yydebug)
  1404.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  1405. #endif
  1406.  
  1407.       if (yyssp >= yyss + yystacksize - 1)
  1408.     YYABORT;
  1409.     }
  1410.  
  1411. #if YYDEBUG != 0
  1412.   if (yydebug)
  1413.     fprintf(stderr, "Entering state %d\n", yystate);
  1414. #endif
  1415.  
  1416.   goto yybackup;
  1417.  yybackup:
  1418.  
  1419. /* Do appropriate processing given the current state.  */
  1420. /* Read a lookahead token if we need one and don't already have one.  */
  1421. /* yyresume: */
  1422.  
  1423.   /* First try to decide what to do without reference to lookahead token.  */
  1424.  
  1425.   yyn = yypact[yystate];
  1426.   if (yyn == YYFLAG)
  1427.     goto yydefault;
  1428.  
  1429.   /* Not known => get a lookahead token if don't already have one.  */
  1430.  
  1431.   /* yychar is either YYEMPTY or YYEOF
  1432.      or a valid token in external form.  */
  1433.  
  1434.   if (yychar == YYEMPTY)
  1435.     {
  1436. #if YYDEBUG != 0
  1437.       if (yydebug)
  1438.     fprintf(stderr, "Reading a token: ");
  1439. #endif
  1440.       yychar = YYLEX;
  1441.     }
  1442.  
  1443.   /* Convert token to internal form (in yychar1) for indexing tables with */
  1444.  
  1445.   if (yychar <= 0)        /* This means end of input. */
  1446.     {
  1447.       yychar1 = 0;
  1448.       yychar = YYEOF;        /* Don't call YYLEX any more */
  1449.  
  1450. #if YYDEBUG != 0
  1451.       if (yydebug)
  1452.     fprintf(stderr, "Now at end of input.\n");
  1453. #endif
  1454.     }
  1455.   else
  1456.     {
  1457.       yychar1 = YYTRANSLATE(yychar);
  1458.  
  1459. #if YYDEBUG != 0
  1460.       if (yydebug)
  1461.     {
  1462.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  1463.       /* Give the individual parser a way to print the precise meaning
  1464.          of a token, for further debugging info.  */
  1465. #ifdef YYPRINT
  1466.       YYPRINT (stderr, yychar, yylval);
  1467. #endif
  1468.       fprintf (stderr, ")\n");
  1469.     }
  1470. #endif
  1471.     }
  1472.  
  1473.   yyn += yychar1;
  1474.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  1475.     goto yydefault;
  1476.  
  1477.   yyn = yytable[yyn];
  1478.  
  1479.   /* yyn is what to do for this token type in this state.
  1480.      Negative => reduce, -yyn is rule number.
  1481.      Positive => shift, yyn is new state.
  1482.        New state is final state => don't bother to shift,
  1483.        just return success.
  1484.      0, or most negative number => error.  */
  1485.  
  1486.   if (yyn < 0)
  1487.     {
  1488.       if (yyn == YYFLAG)
  1489.     goto yyerrlab;
  1490.       yyn = -yyn;
  1491.       goto yyreduce;
  1492.     }
  1493.   else if (yyn == 0)
  1494.     goto yyerrlab;
  1495.  
  1496.   if (yyn == YYFINAL)
  1497.     YYACCEPT;
  1498.  
  1499.   /* Shift the lookahead token.  */
  1500.  
  1501. #if YYDEBUG != 0
  1502.   if (yydebug)
  1503.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  1504. #endif
  1505.  
  1506.   /* Discard the token being shifted unless it is eof.  */
  1507.   if (yychar != YYEOF)
  1508.     yychar = YYEMPTY;
  1509.  
  1510.   *++yyvsp = yylval;
  1511. #ifdef YYLSP_NEEDED
  1512.   *++yylsp = yylloc;
  1513. #endif
  1514.  
  1515.   /* count tokens shifted since error; after three, turn off error status.  */
  1516.   if (yyerrstatus) yyerrstatus--;
  1517.  
  1518.   yystate = yyn;
  1519.   goto yynewstate;
  1520.  
  1521. /* Do the default action for the current state.  */
  1522. yydefault:
  1523.  
  1524.   yyn = yydefact[yystate];
  1525.   if (yyn == 0)
  1526.     goto yyerrlab;
  1527.  
  1528. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  1529. yyreduce:
  1530.   yylen = yyr2[yyn];
  1531.   if (yylen > 0)
  1532.     yyval = yyvsp[1-yylen]; /* implement default value of the action */
  1533.  
  1534. #if YYDEBUG != 0
  1535.   if (yydebug)
  1536.     {
  1537.       int i;
  1538.  
  1539.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  1540.            yyn, yyrline[yyn]);
  1541.  
  1542.       /* Print the symbols being reduced, and their result.  */
  1543.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  1544.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  1545.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  1546.     }
  1547. #endif
  1548.  
  1549.  
  1550.   switch (yyn) {
  1551.  
  1552. case 1:
  1553. #line 219 "c-parse.y"
  1554. { if (pedantic)
  1555.             pedwarn ("ANSI C forbids an empty source file");
  1556.         ;
  1557.     break;}
  1558. case 2:
  1559. #line 223 "c-parse.y"
  1560. {
  1561.           /* In case there were missing closebraces,
  1562.              get us back to the global binding level.  */
  1563.           while (! global_bindings_p ())
  1564.             poplevel (0, 0, 0);
  1565.         ;
  1566.     break;}
  1567. case 3:
  1568. #line 236 "c-parse.y"
  1569. {yyval.ttype = NULL_TREE; ;
  1570.     break;}
  1571. case 5:
  1572. #line 237 "c-parse.y"
  1573. {yyval.ttype = NULL_TREE; ;
  1574.     break;}
  1575. case 9:
  1576. #line 244 "c-parse.y"
  1577. { STRIP_NOPS (yyvsp[-2].ttype);
  1578.           if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
  1579.                && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
  1580.               || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
  1581.             assemble_asm (yyvsp[-2].ttype);
  1582.           else
  1583.             error ("argument of `asm' is not a constant string"); ;
  1584.     break;}
  1585. case 10:
  1586. #line 255 "c-parse.y"
  1587. { if (pedantic)
  1588.             error ("ANSI C forbids data definition with no type or storage class");
  1589.           else if (!flag_traditional)
  1590.             warning ("data definition has no type or storage class"); ;
  1591.     break;}
  1592. case 11:
  1593. #line 260 "c-parse.y"
  1594. {;
  1595.     break;}
  1596. case 12:
  1597. #line 262 "c-parse.y"
  1598. {;
  1599.     break;}
  1600. case 13:
  1601. #line 264 "c-parse.y"
  1602. { pedwarn ("empty declaration"); ;
  1603.     break;}
  1604. case 14:
  1605. #line 266 "c-parse.y"
  1606. { shadow_tag (yyvsp[-1].ttype); ;
  1607.     break;}
  1608. case 17:
  1609. #line 270 "c-parse.y"
  1610. { if (pedantic)
  1611.             pedwarn ("ANSI C does not allow extra `;' outside of a function"); ;
  1612.     break;}
  1613. case 18:
  1614. #line 276 "c-parse.y"
  1615. { if (! start_function (yyvsp[-2].ttype, yyvsp[0].ttype, 0))
  1616.             YYERROR1;
  1617.           reinit_parse_for_function (); ;
  1618.     break;}
  1619. case 19:
  1620. #line 280 "c-parse.y"
  1621. { store_parm_decls (); ;
  1622.     break;}
  1623. case 20:
  1624. #line 282 "c-parse.y"
  1625. { finish_function (0); ;
  1626.     break;}
  1627. case 21:
  1628. #line 284 "c-parse.y"
  1629. { ;
  1630.     break;}
  1631. case 22:
  1632. #line 286 "c-parse.y"
  1633. { if (! start_function (yyvsp[-2].ttype, yyvsp[0].ttype, 0))
  1634.             YYERROR1;
  1635.           reinit_parse_for_function (); ;
  1636.     break;}
  1637. case 23:
  1638. #line 290 "c-parse.y"
  1639. { store_parm_decls (); ;
  1640.     break;}
  1641. case 24:
  1642. #line 292 "c-parse.y"
  1643. { finish_function (0); ;
  1644.     break;}
  1645. case 25:
  1646. #line 294 "c-parse.y"
  1647. { ;
  1648.     break;}
  1649. case 26:
  1650. #line 296 "c-parse.y"
  1651. { if (! start_function (NULL_TREE, yyvsp[0].ttype, 0))
  1652.             YYERROR1;
  1653.           reinit_parse_for_function (); ;
  1654.     break;}
  1655. case 27:
  1656. #line 300 "c-parse.y"
  1657. { store_parm_decls (); ;
  1658.     break;}
  1659. case 28:
  1660. #line 302 "c-parse.y"
  1661. { finish_function (0); ;
  1662.     break;}
  1663. case 29:
  1664. #line 304 "c-parse.y"
  1665. { ;
  1666.     break;}
  1667. case 32:
  1668. #line 313 "c-parse.y"
  1669. { yyval.code = ADDR_EXPR; ;
  1670.     break;}
  1671. case 33:
  1672. #line 315 "c-parse.y"
  1673. { yyval.code = NEGATE_EXPR; ;
  1674.     break;}
  1675. case 34:
  1676. #line 317 "c-parse.y"
  1677. { yyval.code = CONVERT_EXPR; ;
  1678.     break;}
  1679. case 35:
  1680. #line 319 "c-parse.y"
  1681. { yyval.code = PREINCREMENT_EXPR; ;
  1682.     break;}
  1683. case 36:
  1684. #line 321 "c-parse.y"
  1685. { yyval.code = PREDECREMENT_EXPR; ;
  1686.     break;}
  1687. case 37:
  1688. #line 323 "c-parse.y"
  1689. { yyval.code = BIT_NOT_EXPR; ;
  1690.     break;}
  1691. case 38:
  1692. #line 325 "c-parse.y"
  1693. { yyval.code = TRUTH_NOT_EXPR; ;
  1694.     break;}
  1695. case 39:
  1696. #line 329 "c-parse.y"
  1697. { yyval.ttype = build_compound_expr (yyvsp[0].ttype); ;
  1698.     break;}
  1699. case 40:
  1700. #line 334 "c-parse.y"
  1701. { yyval.ttype = NULL_TREE; ;
  1702.     break;}
  1703. case 42:
  1704. #line 340 "c-parse.y"
  1705. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  1706.     break;}
  1707. case 43:
  1708. #line 342 "c-parse.y"
  1709. { chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  1710.     break;}
  1711. case 45:
  1712. #line 348 "c-parse.y"
  1713. { yyval.ttype = build_indirect_ref (yyvsp[0].ttype, "unary *"); ;
  1714.     break;}
  1715. case 46:
  1716. #line 351 "c-parse.y"
  1717. { yyvsp[0].itype = pedantic;
  1718.           pedantic = 0; ;
  1719.     break;}
  1720. case 47:
  1721. #line 354 "c-parse.y"
  1722. { yyval.ttype = yyvsp[0].ttype;
  1723.           pedantic = yyvsp[-2].itype; ;
  1724.     break;}
  1725. case 48:
  1726. #line 357 "c-parse.y"
  1727. { yyval.ttype = build_unary_op (yyvsp[-1].code, yyvsp[0].ttype, 0);
  1728.           overflow_warning (yyval.ttype); ;
  1729.     break;}
  1730. case 49:
  1731. #line 361 "c-parse.y"
  1732. { tree label = lookup_label (yyvsp[0].ttype);
  1733.           if (label == 0)
  1734.             yyval.ttype = null_pointer_node;
  1735.           else
  1736.             {
  1737.               TREE_USED (label) = 1;
  1738.               yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
  1739.               TREE_CONSTANT (yyval.ttype) = 1;
  1740.             }
  1741.         ;
  1742.     break;}
  1743. case 50:
  1744. #line 387 "c-parse.y"
  1745. { if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
  1746.               && DECL_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
  1747.             error ("`sizeof' applied to a bit-field");
  1748.           yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
  1749.     break;}
  1750. case 51:
  1751. #line 392 "c-parse.y"
  1752. { yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
  1753.     break;}
  1754. case 52:
  1755. #line 394 "c-parse.y"
  1756. { yyval.ttype = c_alignof_expr (yyvsp[0].ttype); ;
  1757.     break;}
  1758. case 53:
  1759. #line 396 "c-parse.y"
  1760. { yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
  1761.     break;}
  1762. case 54:
  1763. #line 398 "c-parse.y"
  1764. { yyval.ttype = build_unary_op (REALPART_EXPR, yyvsp[0].ttype, 0); ;
  1765.     break;}
  1766. case 55:
  1767. #line 400 "c-parse.y"
  1768. { yyval.ttype = build_unary_op (IMAGPART_EXPR, yyvsp[0].ttype, 0); ;
  1769.     break;}
  1770. case 57:
  1771. #line 406 "c-parse.y"
  1772. { tree type = groktypename (yyvsp[-2].ttype);
  1773.           yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
  1774.     break;}
  1775. case 58:
  1776. #line 409 "c-parse.y"
  1777. { start_init (NULL_TREE, NULL, 0);
  1778.           yyvsp[-2].ttype = groktypename (yyvsp[-2].ttype);
  1779.           really_start_incremental_init (yyvsp[-2].ttype); ;
  1780.     break;}
  1781. case 59:
  1782. #line 413 "c-parse.y"
  1783. { char *name;
  1784.           tree result = pop_init_level (0);
  1785.           tree type = yyvsp[-5].ttype;
  1786.           finish_init ();
  1787.  
  1788.           if (pedantic)
  1789.             pedwarn ("ANSI C forbids constructor expressions");
  1790.           if (TYPE_NAME (type) != 0)
  1791.             {
  1792.               if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
  1793.             name = IDENTIFIER_POINTER (TYPE_NAME (type));
  1794.               else
  1795.             name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
  1796.             }
  1797.           else
  1798.             name = "";
  1799.           yyval.ttype = result;
  1800.           if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
  1801.             {
  1802.               int failure = complete_array_type (type, yyval.ttype, 1);
  1803.               if (failure)
  1804.             abort ();
  1805.             }
  1806.         ;
  1807.     break;}
  1808. case 61:
  1809. #line 442 "c-parse.y"
  1810. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1811.     break;}
  1812. case 62:
  1813. #line 444 "c-parse.y"
  1814. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1815.     break;}
  1816. case 63:
  1817. #line 446 "c-parse.y"
  1818. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1819.     break;}
  1820. case 64:
  1821. #line 448 "c-parse.y"
  1822. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1823.     break;}
  1824. case 65:
  1825. #line 450 "c-parse.y"
  1826. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1827.     break;}
  1828. case 66:
  1829. #line 452 "c-parse.y"
  1830. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1831.     break;}
  1832. case 67:
  1833. #line 454 "c-parse.y"
  1834. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1835.     break;}
  1836. case 68:
  1837. #line 456 "c-parse.y"
  1838. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1839.     break;}
  1840. case 69:
  1841. #line 458 "c-parse.y"
  1842. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1843.     break;}
  1844. case 70:
  1845. #line 460 "c-parse.y"
  1846. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1847.     break;}
  1848. case 71:
  1849. #line 462 "c-parse.y"
  1850. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1851.     break;}
  1852. case 72:
  1853. #line 464 "c-parse.y"
  1854. { yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1855.     break;}
  1856. case 73:
  1857. #line 466 "c-parse.y"
  1858. { yyval.ttype = parser_build_binary_op (TRUTH_ANDIF_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1859.     break;}
  1860. case 74:
  1861. #line 468 "c-parse.y"
  1862. { yyval.ttype = parser_build_binary_op (TRUTH_ORIF_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1863.     break;}
  1864. case 75:
  1865. #line 470 "c-parse.y"
  1866. { yyval.ttype = build_conditional_expr (yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype); ;
  1867.     break;}
  1868. case 76:
  1869. #line 472 "c-parse.y"
  1870. { yyval.ttype = build_modify_expr (yyvsp[-2].ttype, NOP_EXPR, yyvsp[0].ttype);
  1871.           C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR); ;
  1872.     break;}
  1873. case 77:
  1874. #line 475 "c-parse.y"
  1875. { yyval.ttype = build_modify_expr (yyvsp[-2].ttype, yyvsp[-1].code, yyvsp[0].ttype);
  1876.           /* This inhibits warnings in truthvalue_conversion.  */
  1877.           C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK); ;
  1878.     break;}
  1879. case 78:
  1880. #line 482 "c-parse.y"
  1881. {
  1882.           tree context;
  1883.  
  1884.           yyval.ttype = lastiddecl;
  1885.           if (!yyval.ttype || yyval.ttype == error_mark_node)
  1886.             {
  1887.               if (yychar == YYEMPTY)
  1888.             yychar = YYLEX;
  1889.               if (yychar == '(')
  1890.             {
  1891.                 {
  1892.                   /* Ordinary implicit function declaration.  */
  1893.                   yyval.ttype = implicitly_declare (yyvsp[0].ttype);
  1894.                   assemble_external (yyval.ttype);
  1895.                   TREE_USED (yyval.ttype) = 1;
  1896.                 }
  1897.             }
  1898.               else if (current_function_decl == 0)
  1899.             {
  1900.               error ("`%s' undeclared here (not in a function)",
  1901.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  1902.               yyval.ttype = error_mark_node;
  1903.             }
  1904.               else
  1905.             {
  1906.                 {
  1907.                   if (IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) != error_mark_node
  1908.                   || IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) != current_function_decl)
  1909.                 {
  1910.                   error ("`%s' undeclared (first use this function)",
  1911.                      IDENTIFIER_POINTER (yyvsp[0].ttype));
  1912.  
  1913.                   if (! undeclared_variable_notice)
  1914.                     {
  1915.                       error ("(Each undeclared identifier is reported only once");
  1916.                       error ("for each function it appears in.)");
  1917.                       undeclared_variable_notice = 1;
  1918.                     }
  1919.                 }
  1920.                   yyval.ttype = error_mark_node;
  1921.                   /* Prevent repeated error messages.  */
  1922.                   IDENTIFIER_GLOBAL_VALUE (yyvsp[0].ttype) = error_mark_node;
  1923.                   IDENTIFIER_ERROR_LOCUS (yyvsp[0].ttype) = current_function_decl;
  1924.                 }
  1925.             }
  1926.             }
  1927.           else if (TREE_TYPE (yyval.ttype) == error_mark_node)
  1928.             yyval.ttype = error_mark_node;
  1929.           else if (C_DECL_ANTICIPATED (yyval.ttype))
  1930.             {
  1931.               /* The first time we see a build-in function used,
  1932.              if it has not been declared.  */
  1933.               C_DECL_ANTICIPATED (yyval.ttype) = 0;
  1934.               if (yychar == YYEMPTY)
  1935.             yychar = YYLEX;
  1936.               if (yychar == '(')
  1937.             {
  1938.               /* Omit the implicit declaration we
  1939.                  would ordinarily do, so we don't lose
  1940.                  the actual built in type.
  1941.                  But print a diagnostic for the mismatch.  */
  1942.                 if (TREE_CODE (yyval.ttype) != FUNCTION_DECL)
  1943.                   error ("`%s' implicitly declared as function",
  1944.                      IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  1945.               else if ((TYPE_MODE (TREE_TYPE (TREE_TYPE (yyval.ttype)))
  1946.                     != TYPE_MODE (integer_type_node))
  1947.                    && (TREE_TYPE (TREE_TYPE (yyval.ttype))
  1948.                        != void_type_node))
  1949.                 pedwarn ("type mismatch in implicit declaration for built-in function `%s'",
  1950.                      IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  1951.               /* If it really returns void, change that to int.  */
  1952.               if (TREE_TYPE (TREE_TYPE (yyval.ttype)) == void_type_node)
  1953.                 TREE_TYPE (yyval.ttype)
  1954.                   = build_function_type (integer_type_node,
  1955.                              TYPE_ARG_TYPES (TREE_TYPE (yyval.ttype)));
  1956.             }
  1957.               else
  1958.             pedwarn ("built-in function `%s' used without declaration",
  1959.                  IDENTIFIER_POINTER (DECL_NAME (yyval.ttype)));
  1960.  
  1961.               /* Do what we would ordinarily do when a fn is used.  */
  1962.               assemble_external (yyval.ttype);
  1963.               TREE_USED (yyval.ttype) = 1;
  1964.             }
  1965.           else
  1966.             {
  1967.               assemble_external (yyval.ttype);
  1968.               TREE_USED (yyval.ttype) = 1;
  1969.             }
  1970.  
  1971.           if (TREE_CODE (yyval.ttype) == CONST_DECL)
  1972.             {
  1973.               yyval.ttype = DECL_INITIAL (yyval.ttype);
  1974.               /* This is to prevent an enum whose value is 0
  1975.              from being considered a null pointer constant.  */
  1976.               yyval.ttype = build1 (NOP_EXPR, TREE_TYPE (yyval.ttype), yyval.ttype);
  1977.               TREE_CONSTANT (yyval.ttype) = 1;
  1978.             }
  1979.         ;
  1980.     break;}
  1981. case 80:
  1982. #line 583 "c-parse.y"
  1983. { yyval.ttype = combine_strings (yyvsp[0].ttype); ;
  1984.     break;}
  1985. case 81:
  1986. #line 585 "c-parse.y"
  1987. { char class = TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype));
  1988.           if (class == 'e' || class == '1'
  1989.               || class == '2' || class == '<')
  1990.             C_SET_EXP_ORIGINAL_CODE (yyvsp[-1].ttype, ERROR_MARK);
  1991.           yyval.ttype = yyvsp[-1].ttype; ;
  1992.     break;}
  1993. case 82:
  1994. #line 591 "c-parse.y"
  1995. { yyval.ttype = error_mark_node; ;
  1996.     break;}
  1997. case 83:
  1998. #line 593 "c-parse.y"
  1999. { if (current_function_decl == 0)
  2000.             {
  2001.               error ("braced-group within expression allowed only inside a function");
  2002.               YYERROR;
  2003.             }
  2004.           /* We must force a BLOCK for this level
  2005.              so that, if it is not expanded later,
  2006.              there is a way to turn off the entire subtree of blocks
  2007.              that are contained in it.  */
  2008.           keep_next_level ();
  2009.           push_iterator_stack ();
  2010.           push_label_level ();
  2011.           yyval.ttype = expand_start_stmt_expr (); ;
  2012.     break;}
  2013. case 84:
  2014. #line 607 "c-parse.y"
  2015. { tree rtl_exp;
  2016.           if (pedantic)
  2017.             pedwarn ("ANSI C forbids braced-groups within expressions");
  2018.           pop_iterator_stack ();
  2019.           pop_label_level ();
  2020.           rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
  2021.           /* The statements have side effects, so the group does.  */
  2022.           TREE_SIDE_EFFECTS (rtl_exp) = 1;
  2023.  
  2024.           if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
  2025.             {
  2026.               /* Make a BIND_EXPR for the BLOCK already made.  */
  2027.               yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
  2028.                   NULL_TREE, rtl_exp, yyvsp[-1].ttype);
  2029.               /* Remove the block from the tree at this point.
  2030.              It gets put back at the proper place
  2031.              when the BIND_EXPR is expanded.  */
  2032.               delete_block (yyvsp[-1].ttype);
  2033.             }
  2034.           else
  2035.             yyval.ttype = yyvsp[-1].ttype;
  2036.         ;
  2037.     break;}
  2038. case 85:
  2039. #line 630 "c-parse.y"
  2040. { yyval.ttype = build_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2041.     break;}
  2042. case 86:
  2043. #line 632 "c-parse.y"
  2044. { yyval.ttype = build_array_ref (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2045.     break;}
  2046. case 87:
  2047. #line 634 "c-parse.y"
  2048. {
  2049.             yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
  2050.         ;
  2051.     break;}
  2052. case 88:
  2053. #line 638 "c-parse.y"
  2054. {
  2055.                   tree expr = build_indirect_ref (yyvsp[-2].ttype, "->");
  2056.  
  2057.                     yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
  2058.         ;
  2059.     break;}
  2060. case 89:
  2061. #line 644 "c-parse.y"
  2062. { yyval.ttype = build_unary_op (POSTINCREMENT_EXPR, yyvsp[-1].ttype, 0); ;
  2063.     break;}
  2064. case 90:
  2065. #line 646 "c-parse.y"
  2066. { yyval.ttype = build_unary_op (POSTDECREMENT_EXPR, yyvsp[-1].ttype, 0); ;
  2067.     break;}
  2068. case 92:
  2069. #line 653 "c-parse.y"
  2070. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2071.     break;}
  2072. case 95:
  2073. #line 662 "c-parse.y"
  2074. { c_mark_varargs ();
  2075.           if (pedantic)
  2076.             pedwarn ("ANSI C does not permit use of `varargs.h'"); ;
  2077.     break;}
  2078. case 96:
  2079. #line 672 "c-parse.y"
  2080. { ;
  2081.     break;}
  2082. case 101:
  2083. #line 684 "c-parse.y"
  2084. { current_declspecs = TREE_VALUE (declspec_stack);
  2085.           declspec_stack = TREE_CHAIN (declspec_stack);
  2086.           resume_momentary (yyvsp[-2].itype); ;
  2087.     break;}
  2088. case 102:
  2089. #line 688 "c-parse.y"
  2090. { current_declspecs = TREE_VALUE (declspec_stack);
  2091.           declspec_stack = TREE_CHAIN (declspec_stack);
  2092.           resume_momentary (yyvsp[-2].itype); ;
  2093.     break;}
  2094. case 103:
  2095. #line 692 "c-parse.y"
  2096. { shadow_tag_warned (yyvsp[-1].ttype, 1);
  2097.           pedwarn ("empty declaration"); ;
  2098.     break;}
  2099. case 104:
  2100. #line 695 "c-parse.y"
  2101. { pedwarn ("empty declaration"); ;
  2102.     break;}
  2103. case 105:
  2104. #line 704 "c-parse.y"
  2105. { ;
  2106.     break;}
  2107. case 110:
  2108. #line 719 "c-parse.y"
  2109. { yyval.itype = suspend_momentary ();
  2110.           pending_xref_error ();
  2111.           declspec_stack = tree_cons (NULL_TREE, current_declspecs,
  2112.                           declspec_stack);
  2113.           current_declspecs = yyvsp[0].ttype; ;
  2114.     break;}
  2115. case 111:
  2116. #line 728 "c-parse.y"
  2117. { current_declspecs = TREE_VALUE (declspec_stack);
  2118.           declspec_stack = TREE_CHAIN (declspec_stack);
  2119.           resume_momentary (yyvsp[-2].itype); ;
  2120.     break;}
  2121. case 112:
  2122. #line 732 "c-parse.y"
  2123. { current_declspecs = TREE_VALUE (declspec_stack);
  2124.           declspec_stack = TREE_CHAIN (declspec_stack);
  2125.           resume_momentary (yyvsp[-2].itype); ;
  2126.     break;}
  2127. case 113:
  2128. #line 736 "c-parse.y"
  2129. { current_declspecs = TREE_VALUE (declspec_stack);
  2130.           declspec_stack = TREE_CHAIN (declspec_stack);
  2131.           resume_momentary (yyvsp[-1].itype); ;
  2132.     break;}
  2133. case 114:
  2134. #line 740 "c-parse.y"
  2135. { current_declspecs = TREE_VALUE (declspec_stack);
  2136.           declspec_stack = TREE_CHAIN (declspec_stack);
  2137.           resume_momentary (yyvsp[-1].itype); ;
  2138.     break;}
  2139. case 115:
  2140. #line 744 "c-parse.y"
  2141. { shadow_tag (yyvsp[-1].ttype); ;
  2142.     break;}
  2143. case 116:
  2144. #line 746 "c-parse.y"
  2145. { pedwarn ("empty declaration"); ;
  2146.     break;}
  2147. case 117:
  2148. #line 755 "c-parse.y"
  2149. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2150.     break;}
  2151. case 118:
  2152. #line 757 "c-parse.y"
  2153. { yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
  2154.     break;}
  2155. case 119:
  2156. #line 761 "c-parse.y"
  2157. { yyval.ttype = NULL_TREE; ;
  2158.     break;}
  2159. case 120:
  2160. #line 763 "c-parse.y"
  2161. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2162.     break;}
  2163. case 121:
  2164. #line 765 "c-parse.y"
  2165. { if (extra_warnings)
  2166.             warning ("`%s' is not at beginning of declaration",
  2167.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2168.           yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2169.     break;}
  2170. case 122:
  2171. #line 777 "c-parse.y"
  2172. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
  2173.           TREE_STATIC (yyval.ttype) = 1; ;
  2174.     break;}
  2175. case 123:
  2176. #line 780 "c-parse.y"
  2177. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2178.     break;}
  2179. case 124:
  2180. #line 782 "c-parse.y"
  2181. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
  2182.           TREE_STATIC (yyval.ttype) = 1; ;
  2183.     break;}
  2184. case 125:
  2185. #line 785 "c-parse.y"
  2186. { if (extra_warnings && TREE_STATIC (yyvsp[-1].ttype))
  2187.             warning ("`%s' is not at beginning of declaration",
  2188.                  IDENTIFIER_POINTER (yyvsp[0].ttype));
  2189.           yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
  2190.           TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
  2191.     break;}
  2192. case 126:
  2193. #line 799 "c-parse.y"
  2194. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2195.     break;}
  2196. case 127:
  2197. #line 801 "c-parse.y"
  2198. { yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
  2199.     break;}
  2200. case 128:
  2201. #line 805 "c-parse.y"
  2202. { yyval.ttype = NULL_TREE; ;
  2203.     break;}
  2204. case 129:
  2205. #line 807 "c-parse.y"
  2206. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2207.     break;}
  2208. case 132:
  2209. #line 817 "c-parse.y"
  2210. { /* For a typedef name, record the meaning, not the name.
  2211.              In case of `foo foo, bar;'.  */
  2212.           yyval.ttype = lookup_name (yyvsp[0].ttype); ;
  2213.     break;}
  2214. case 133:
  2215. #line 821 "c-parse.y"
  2216. { yyval.ttype = TREE_TYPE (yyvsp[-1].ttype); ;
  2217.     break;}
  2218. case 134:
  2219. #line 823 "c-parse.y"
  2220. { yyval.ttype = groktypename (yyvsp[-1].ttype); ;
  2221.     break;}
  2222. case 142:
  2223. #line 845 "c-parse.y"
  2224. { yyval.ttype = NULL_TREE; ;
  2225.     break;}
  2226. case 143:
  2227. #line 847 "c-parse.y"
  2228. { if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype);
  2229.           yyval.ttype = yyvsp[-1].ttype;
  2230.         ;
  2231.     break;}
  2232. case 144:
  2233. #line 854 "c-parse.y"
  2234. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1);
  2235.           decl_attributes (yyval.ttype, yyvsp[-1].ttype);
  2236.           start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
  2237.     break;}
  2238. case 145:
  2239. #line 859 "c-parse.y"
  2240. { finish_init ();
  2241.           decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype);
  2242.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
  2243.     break;}
  2244. case 146:
  2245. #line 863 "c-parse.y"
  2246. { tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0);
  2247.           decl_attributes (d, yyvsp[0].ttype);
  2248.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
  2249.     break;}
  2250. case 147:
  2251. #line 870 "c-parse.y"
  2252. { yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1);
  2253.           decl_attributes (yyval.ttype, yyvsp[-1].ttype);
  2254.           start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
  2255.     break;}
  2256. case 148:
  2257. #line 875 "c-parse.y"
  2258. { finish_init ();
  2259.           decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype);
  2260.           finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
  2261.     break;}
  2262. case 149:
  2263. #line 879 "c-parse.y"
  2264. { tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0);
  2265.           decl_attributes (d, yyvsp[0].ttype);
  2266.           finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
  2267.     break;}
  2268. case 150:
  2269. #line 887 "c-parse.y"
  2270. { yyval.ttype = NULL_TREE; ;
  2271.     break;}
  2272. case 151:
  2273. #line 889 "c-parse.y"
  2274. { yyval.ttype = yyvsp[-2].ttype; ;
  2275.     break;}
  2276. case 152:
  2277. #line 894 "c-parse.y"
  2278. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2279.     break;}
  2280. case 153:
  2281. #line 896 "c-parse.y"
  2282. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-2].ttype); ;
  2283.     break;}
  2284. case 154:
  2285. #line 901 "c-parse.y"
  2286. {
  2287. #ifdef HANDLE_ATTRIBUTE0
  2288.       /* give the function a chance to validate further attributes */
  2289.       if (HANDLE_ATTRIBUTE0 (IDENTIFIER_POINTER (yyvsp[0].ttype)) ||
  2290.           (strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "packed")
  2291.           && strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "noreturn")))
  2292. #else
  2293.       if (strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "packed")
  2294.           && strcmp (IDENTIFIER_POINTER (yyvsp[0].ttype), "noreturn"))
  2295. #endif
  2296.         warning ("`%s' attribute directive ignored",
  2297.              IDENTIFIER_POINTER (yyvsp[0].ttype));
  2298.       yyval.ttype = yyvsp[0].ttype; ;
  2299.     break;}
  2300. case 156:
  2301. #line 916 "c-parse.y"
  2302. { /* If not "mode (m)", then issue warning.  */
  2303.       if (strcmp (IDENTIFIER_POINTER (yyvsp[-3].ttype), "mode") != 0)
  2304.         {
  2305.           warning ("`%s' attribute directive ignored",
  2306.                IDENTIFIER_POINTER (yyvsp[-3].ttype));
  2307.           yyval.ttype = yyvsp[-3].ttype;
  2308.         }
  2309.       else
  2310.         yyval.ttype = tree_cons (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE); ;
  2311.     break;}
  2312. case 157:
  2313. #line 926 "c-parse.y"
  2314. { /* if not "aligned(n)", then issue warning */
  2315.       if (strcmp (IDENTIFIER_POINTER (yyvsp[-3].ttype), "aligned") != 0
  2316.           || TREE_CODE (yyvsp[-1].ttype) != INTEGER_CST)
  2317.         {
  2318.           warning ("`%s' attribute directive ignored",
  2319.                IDENTIFIER_POINTER (yyvsp[-3].ttype));
  2320.           yyval.ttype = yyvsp[-3].ttype;
  2321.         }
  2322.       else
  2323.         yyval.ttype = tree_cons (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE); ;
  2324.     break;}
  2325. case 158:
  2326. #line 937 "c-parse.y"
  2327. { /* if not "format(...)", then issue warning */
  2328.       if (strcmp (IDENTIFIER_POINTER (yyvsp[-7].ttype), "format") != 0
  2329.           || TREE_CODE (yyvsp[-3].ttype) != INTEGER_CST
  2330.           || TREE_CODE (yyvsp[-1].ttype) != INTEGER_CST)
  2331.         {
  2332.           warning ("`%s' attribute directive ignored",
  2333.                IDENTIFIER_POINTER (yyvsp[-7].ttype));
  2334.           yyval.ttype = yyvsp[-7].ttype;
  2335.         }
  2336.       else
  2337.         yyval.ttype = tree_cons (yyvsp[-7].ttype,
  2338.                 tree_cons (yyvsp[-5].ttype,
  2339.                        tree_cons (yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE),
  2340.                        NULL_TREE),
  2341.                 NULL_TREE); ;
  2342.     break;}
  2343. case 160:
  2344. #line 959 "c-parse.y"
  2345. { really_start_incremental_init (NULL_TREE);
  2346.           /* Note that the call to clear_momentary
  2347.              is in process_init_element.  */
  2348.           push_momentary (); ;
  2349.     break;}
  2350. case 161:
  2351. #line 964 "c-parse.y"
  2352. { yyval.ttype = pop_init_level (0);
  2353.           if (yyval.ttype == error_mark_node)
  2354.             pop_momentary ();
  2355.           else
  2356.             pop_momentary_nofree (); ;
  2357.     break;}
  2358. case 162:
  2359. #line 971 "c-parse.y"
  2360. { yyval.ttype = error_mark_node; ;
  2361.     break;}
  2362. case 163:
  2363. #line 977 "c-parse.y"
  2364. { if (pedantic)
  2365.             pedwarn ("ANSI C forbids empty initializer braces"); ;
  2366.     break;}
  2367. case 167:
  2368. #line 991 "c-parse.y"
  2369. { process_init_element (yyvsp[0].ttype); ;
  2370.     break;}
  2371. case 168:
  2372. #line 993 "c-parse.y"
  2373. { push_init_level (0); ;
  2374.     break;}
  2375. case 169:
  2376. #line 995 "c-parse.y"
  2377. { process_init_element (pop_init_level (0)); ;
  2378.     break;}
  2379. case 171:
  2380. #line 1001 "c-parse.y"
  2381. { set_init_index (yyvsp[-4].ttype, yyvsp[-2].ttype); ;
  2382.     break;}
  2383. case 173:
  2384. #line 1004 "c-parse.y"
  2385. { set_init_index (yyvsp[-2].ttype, NULL_TREE); ;
  2386.     break;}
  2387. case 175:
  2388. #line 1007 "c-parse.y"
  2389. { set_init_label (yyvsp[-1].ttype); ;
  2390.     break;}
  2391. case 177:
  2392. #line 1010 "c-parse.y"
  2393. { set_init_label (yyvsp[-1].ttype); ;
  2394.     break;}
  2395. case 179:
  2396. #line 1016 "c-parse.y"
  2397. { push_c_function_context ();
  2398.           if (! start_function (current_declspecs, yyvsp[0].ttype, 1))
  2399.             {
  2400.               pop_c_function_context ();
  2401.               YYERROR1;
  2402.             }
  2403.           reinit_parse_for_function ();
  2404.           store_parm_decls (); ;
  2405.     break;}
  2406. case 180:
  2407. #line 1031 "c-parse.y"
  2408. { finish_function (1);
  2409.           pop_c_function_context (); ;
  2410.     break;}
  2411. case 181:
  2412. #line 1037 "c-parse.y"
  2413. { push_c_function_context ();
  2414.           if (! start_function (current_declspecs, yyvsp[0].ttype, 1))
  2415.             {
  2416.               pop_c_function_context ();
  2417.               YYERROR1;
  2418.             }
  2419.           reinit_parse_for_function ();
  2420.           store_parm_decls (); ;
  2421.     break;}
  2422. case 182:
  2423. #line 1052 "c-parse.y"
  2424. { finish_function (1);
  2425.           pop_c_function_context (); ;
  2426.     break;}
  2427. case 185:
  2428. #line 1068 "c-parse.y"
  2429. { yyval.ttype = yyvsp[-1].ttype; ;
  2430.     break;}
  2431. case 186:
  2432. #line 1070 "c-parse.y"
  2433. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2434.     break;}
  2435. case 187:
  2436. #line 1075 "c-parse.y"
  2437. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2438.     break;}
  2439. case 188:
  2440. #line 1077 "c-parse.y"
  2441. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2442.     break;}
  2443. case 189:
  2444. #line 1079 "c-parse.y"
  2445. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2446.     break;}
  2447. case 191:
  2448. #line 1090 "c-parse.y"
  2449. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2450.     break;}
  2451. case 192:
  2452. #line 1095 "c-parse.y"
  2453. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2454.     break;}
  2455. case 193:
  2456. #line 1097 "c-parse.y"
  2457. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2458.     break;}
  2459. case 194:
  2460. #line 1099 "c-parse.y"
  2461. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2462.     break;}
  2463. case 196:
  2464. #line 1108 "c-parse.y"
  2465. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2466.     break;}
  2467. case 197:
  2468. #line 1113 "c-parse.y"
  2469. { yyval.ttype = yyvsp[-1].ttype; ;
  2470.     break;}
  2471. case 198:
  2472. #line 1115 "c-parse.y"
  2473. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2474.     break;}
  2475. case 199:
  2476. #line 1117 "c-parse.y"
  2477. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2478.     break;}
  2479. case 200:
  2480. #line 1119 "c-parse.y"
  2481. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2482.     break;}
  2483. case 202:
  2484. #line 1125 "c-parse.y"
  2485. { yyval.ttype = start_struct (RECORD_TYPE, yyvsp[-1].ttype);
  2486.           /* Start scope of tag before parsing components.  */
  2487.         ;
  2488.     break;}
  2489. case 203:
  2490. #line 1129 "c-parse.y"
  2491. { yyval.ttype = finish_struct (yyvsp[-2].ttype, yyvsp[-1].ttype);
  2492.           /* Really define the structure.  */
  2493.         ;
  2494.     break;}
  2495. case 204:
  2496. #line 1133 "c-parse.y"
  2497. { yyval.ttype = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
  2498.                       yyvsp[-1].ttype); ;
  2499.     break;}
  2500. case 205:
  2501. #line 1136 "c-parse.y"
  2502. { yyval.ttype = xref_tag (RECORD_TYPE, yyvsp[0].ttype); ;
  2503.     break;}
  2504. case 206:
  2505. #line 1138 "c-parse.y"
  2506. { yyval.ttype = start_struct (UNION_TYPE, yyvsp[-1].ttype); ;
  2507.     break;}
  2508. case 207:
  2509. #line 1140 "c-parse.y"
  2510. { yyval.ttype = finish_struct (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
  2511.     break;}
  2512. case 208:
  2513. #line 1142 "c-parse.y"
  2514. { yyval.ttype = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
  2515.                       yyvsp[-1].ttype); ;
  2516.     break;}
  2517. case 209:
  2518. #line 1145 "c-parse.y"
  2519. { yyval.ttype = xref_tag (UNION_TYPE, yyvsp[0].ttype); ;
  2520.     break;}
  2521. case 210:
  2522. #line 1147 "c-parse.y"
  2523. { yyvsp[0].itype = suspend_momentary ();
  2524.           yyval.ttype = start_enum (yyvsp[-1].ttype); ;
  2525.     break;}
  2526. case 211:
  2527. #line 1150 "c-parse.y"
  2528. { yyval.ttype = finish_enum (yyvsp[-3].ttype, nreverse (yyvsp[-2].ttype));
  2529.           resume_momentary (yyvsp[-4].itype); ;
  2530.     break;}
  2531. case 212:
  2532. #line 1153 "c-parse.y"
  2533. { yyvsp[0].itype = suspend_momentary ();
  2534.           yyval.ttype = start_enum (NULL_TREE); ;
  2535.     break;}
  2536. case 213:
  2537. #line 1156 "c-parse.y"
  2538. { yyval.ttype = finish_enum (yyvsp[-3].ttype, nreverse (yyvsp[-2].ttype));
  2539.           resume_momentary (yyvsp[-4].itype); ;
  2540.     break;}
  2541. case 214:
  2542. #line 1159 "c-parse.y"
  2543. { yyval.ttype = xref_tag (ENUMERAL_TYPE, yyvsp[0].ttype); ;
  2544.     break;}
  2545. case 218:
  2546. #line 1170 "c-parse.y"
  2547. { if (pedantic) pedwarn ("comma at end of enumerator list"); ;
  2548.     break;}
  2549. case 219:
  2550. #line 1175 "c-parse.y"
  2551. { yyval.ttype = yyvsp[0].ttype; ;
  2552.     break;}
  2553. case 220:
  2554. #line 1177 "c-parse.y"
  2555. { yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
  2556.           pedwarn ("no semicolon at end of struct or union"); ;
  2557.     break;}
  2558. case 221:
  2559. #line 1182 "c-parse.y"
  2560. { yyval.ttype = NULL_TREE; ;
  2561.     break;}
  2562. case 222:
  2563. #line 1184 "c-parse.y"
  2564. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
  2565.     break;}
  2566. case 223:
  2567. #line 1186 "c-parse.y"
  2568. { if (pedantic)
  2569.             pedwarn ("extra semicolon in struct or union specified"); ;
  2570.     break;}
  2571. case 224:
  2572. #line 1201 "c-parse.y"
  2573. { yyval.ttype = yyvsp[0].ttype;
  2574.           current_declspecs = TREE_VALUE (declspec_stack);
  2575.           declspec_stack = TREE_CHAIN (declspec_stack);
  2576.           resume_momentary (yyvsp[-1].itype); ;
  2577.     break;}
  2578. case 225:
  2579. #line 1206 "c-parse.y"
  2580. { if (pedantic)
  2581.             pedwarn ("ANSI C forbids member declarations with no members");
  2582.           shadow_tag(yyvsp[0].ttype);
  2583.           yyval.ttype = NULL_TREE; ;
  2584.     break;}
  2585. case 226:
  2586. #line 1211 "c-parse.y"
  2587. { yyval.ttype = yyvsp[0].ttype;
  2588.           current_declspecs = TREE_VALUE (declspec_stack);
  2589.           declspec_stack = TREE_CHAIN (declspec_stack);
  2590.           resume_momentary (yyvsp[-1].itype); ;
  2591.     break;}
  2592. case 227:
  2593. #line 1216 "c-parse.y"
  2594. { if (pedantic)
  2595.             pedwarn ("ANSI C forbids member declarations with no members");
  2596.           shadow_tag(yyvsp[0].ttype);
  2597.           yyval.ttype = NULL_TREE; ;
  2598.     break;}
  2599. case 228:
  2600. #line 1221 "c-parse.y"
  2601. { yyval.ttype = NULL_TREE; ;
  2602.     break;}
  2603. case 230:
  2604. #line 1227 "c-parse.y"
  2605. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2606.     break;}
  2607. case 231:
  2608. #line 1232 "c-parse.y"
  2609. { yyval.ttype = grokfield (yyvsp[-3].filename, yyvsp[-2].lineno, yyvsp[-1].ttype, current_declspecs, NULL_TREE);
  2610.           decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  2611.     break;}
  2612. case 232:
  2613. #line 1236 "c-parse.y"
  2614. { yyval.ttype = grokfield (yyvsp[-5].filename, yyvsp[-4].lineno, yyvsp[-3].ttype, current_declspecs, yyvsp[-1].ttype);
  2615.           decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  2616.     break;}
  2617. case 233:
  2618. #line 1239 "c-parse.y"
  2619. { yyval.ttype = grokfield (yyvsp[-4].filename, yyvsp[-3].lineno, NULL_TREE, current_declspecs, yyvsp[-1].ttype);
  2620.           decl_attributes (yyval.ttype, yyvsp[0].ttype); ;
  2621.     break;}
  2622. case 235:
  2623. #line 1251 "c-parse.y"
  2624. { yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-2].ttype); ;
  2625.     break;}
  2626. case 236:
  2627. #line 1257 "c-parse.y"
  2628. { yyval.ttype = build_enumerator (yyvsp[0].ttype, NULL_TREE); ;
  2629.     break;}
  2630. case 237:
  2631. #line 1259 "c-parse.y"
  2632. { yyval.ttype = build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  2633.     break;}
  2634. case 238:
  2635. #line 1264 "c-parse.y"
  2636. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2637.     break;}
  2638. case 239:
  2639. #line 1266 "c-parse.y"
  2640. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2641.     break;}
  2642. case 240:
  2643. #line 1271 "c-parse.y"
  2644. { yyval.ttype = NULL_TREE; ;
  2645.     break;}
  2646. case 242:
  2647. #line 1277 "c-parse.y"
  2648. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2649.     break;}
  2650. case 243:
  2651. #line 1279 "c-parse.y"
  2652. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2653.     break;}
  2654. case 244:
  2655. #line 1284 "c-parse.y"
  2656. { yyval.ttype = NULL_TREE; ;
  2657.     break;}
  2658. case 245:
  2659. #line 1286 "c-parse.y"
  2660. { yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
  2661.     break;}
  2662. case 246:
  2663. #line 1291 "c-parse.y"
  2664. { yyval.ttype = yyvsp[-1].ttype; ;
  2665.     break;}
  2666. case 247:
  2667. #line 1294 "c-parse.y"
  2668. { yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  2669.     break;}
  2670. case 248:
  2671. #line 1296 "c-parse.y"
  2672. { yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
  2673.     break;}
  2674. case 249:
  2675. #line 1298 "c-parse.y"
  2676. { yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
  2677.     break;}
  2678. case 250:
  2679. #line 1300 "c-parse.y"
  2680. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  2681.     break;}
  2682. case 251:
  2683. #line 1302 "c-parse.y"
  2684. { yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
  2685.     break;}
  2686. case 252:
  2687. #line 1304 "c-parse.y"
  2688. { yyval.ttype = build_nt (CALL_EXPR, NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
  2689.     break;}
  2690. case 253:
  2691. #line 1306 "c-parse.y"
  2692. { yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
  2693.     break;}
  2694. case 254:
  2695. #line 1308 "c-parse.y"
  2696. { yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); ;
  2697.     break;}
  2698. case 261:
  2699. #line 1330 "c-parse.y"
  2700. { emit_line_note (input_filename, lineno);
  2701.           pushlevel (0);
  2702.           clear_last_expr ();
  2703.           push_momentary ();
  2704.           expand_start_bindings (0);
  2705.         ;
  2706.     break;}
  2707. case 263:
  2708. #line 1343 "c-parse.y"
  2709. { if (pedantic)
  2710.             pedwarn ("ANSI C forbids label declarations"); ;
  2711.     break;}
  2712. case 266:
  2713. #line 1354 "c-parse.y"
  2714. { tree link;
  2715.           for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
  2716.             {
  2717.               tree label = shadow_label (TREE_VALUE (link));
  2718.               C_DECLARED_LABEL_FLAG (label) = 1;
  2719.               declare_nonlocal_label (label);
  2720.             }
  2721.         ;
  2722.     break;}
  2723. case 267:
  2724. #line 1368 "c-parse.y"
  2725. {;
  2726.     break;}
  2727. case 269:
  2728. #line 1373 "c-parse.y"
  2729. { yyval.ttype = convert (void_type_node, integer_zero_node); ;
  2730.     break;}
  2731. case 270:
  2732. #line 1375 "c-parse.y"
  2733. { emit_line_note (input_filename, lineno);
  2734.           expand_end_bindings (getdecls (), 1, 0);
  2735.           yyval.ttype = poplevel (1, 1, 0);
  2736.           pop_momentary (); ;
  2737.     break;}
  2738. case 271:
  2739. #line 1380 "c-parse.y"
  2740. { emit_line_note (input_filename, lineno);
  2741.           expand_end_bindings (getdecls (), kept_level_p (), 0);
  2742.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  2743.           pop_momentary (); ;
  2744.     break;}
  2745. case 272:
  2746. #line 1385 "c-parse.y"
  2747. { emit_line_note (input_filename, lineno);
  2748.           expand_end_bindings (getdecls (), kept_level_p (), 0);
  2749.           yyval.ttype = poplevel (kept_level_p (), 0, 0);
  2750.           pop_momentary (); ;
  2751.     break;}
  2752. case 275:
  2753. #line 1402 "c-parse.y"
  2754. { emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  2755.           expand_start_cond (truthvalue_conversion (yyvsp[-1].ttype), 0);
  2756.           yyval.itype = stmt_count;
  2757.           if_stmt_file = yyvsp[-5].filename;
  2758.           if_stmt_line = yyvsp[-4].lineno;
  2759.           position_after_white_space (); ;
  2760.     break;}
  2761. case 276:
  2762. #line 1415 "c-parse.y"
  2763. { stmt_count++;
  2764.           emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
  2765.           /* See comment in `while' alternative, above.  */
  2766.           emit_nop ();
  2767.           expand_start_loop_continue_elsewhere (1);
  2768.           position_after_white_space (); ;
  2769.     break;}
  2770. case 277:
  2771. #line 1422 "c-parse.y"
  2772. { expand_loop_continue_here (); ;
  2773.     break;}
  2774. case 278:
  2775. #line 1426 "c-parse.y"
  2776. { yyval.filename = input_filename; ;
  2777.     break;}
  2778. case 279:
  2779. #line 1430 "c-parse.y"
  2780. { yyval.lineno = lineno; ;
  2781.     break;}
  2782. case 280:
  2783. #line 1435 "c-parse.y"
  2784. { ;
  2785.     break;}
  2786. case 281:
  2787. #line 1440 "c-parse.y"
  2788. { ;
  2789.     break;}
  2790. case 282:
  2791. #line 1445 "c-parse.y"
  2792. { ;
  2793.     break;}
  2794. case 284:
  2795. #line 1451 "c-parse.y"
  2796. { int next;
  2797.           position_after_white_space ();
  2798.           next = getc (finput);
  2799.           ungetc (next, finput);
  2800.           if (pedantic && next == '}')
  2801.             pedwarn ("ANSI C forbids label at end of compound statement");
  2802.         ;
  2803.     break;}
  2804. case 285:
  2805. #line 1463 "c-parse.y"
  2806. { stmt_count++; ;
  2807.     break;}
  2808. case 287:
  2809. #line 1466 "c-parse.y"
  2810. { stmt_count++;
  2811.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  2812. /* It appears that this should not be done--that a non-lvalue array
  2813.    shouldn't get an error if the value isn't used.
  2814.    Section 3.2.2.1 says that an array lvalue gets converted to a pointer
  2815.    if it appears as a top-level expression,
  2816.    but says nothing about non-lvalue arrays.  */
  2817. #if 0
  2818.           /* Call default_conversion to get an error
  2819.              on referring to a register array if pedantic.  */
  2820.           if (TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == ARRAY_TYPE
  2821.               || TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == FUNCTION_TYPE)
  2822.             yyvsp[-1].ttype = default_conversion (yyvsp[-1].ttype);
  2823. #endif
  2824.           iterator_expand (yyvsp[-1].ttype);
  2825.           clear_momentary (); ;
  2826.     break;}
  2827. case 288:
  2828. #line 1483 "c-parse.y"
  2829. { expand_start_else ();
  2830.           yyvsp[-1].itype = stmt_count;
  2831.           position_after_white_space (); ;
  2832.     break;}
  2833. case 289:
  2834. #line 1487 "c-parse.y"
  2835. { expand_end_cond ();
  2836.           if (extra_warnings && stmt_count == yyvsp[-3].itype)
  2837.             warning ("empty body in an else-statement"); ;
  2838.     break;}
  2839. case 290:
  2840. #line 1491 "c-parse.y"
  2841. { expand_end_cond ();
  2842.           /* This warning is here instead of in simple_if, because we
  2843.              do not want a warning if an empty if is followed by an
  2844.              else statement.  */
  2845.           if (extra_warnings && stmt_count == yyvsp[0].itype)
  2846.             warning_with_file_and_line (if_stmt_file, if_stmt_line,
  2847.                         "empty body in an if-statement"); ;
  2848.     break;}
  2849. case 291:
  2850. #line 1502 "c-parse.y"
  2851. { expand_end_cond (); ;
  2852.     break;}
  2853. case 292:
  2854. #line 1504 "c-parse.y"
  2855. { stmt_count++;
  2856.           emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
  2857.           /* The emit_nop used to come before emit_line_note,
  2858.              but that made the nop seem like part of the preceding line.
  2859.              And that was confusing when the preceding line was
  2860.              inside of an if statement and was not really executed.
  2861.              I think it ought to work to put the nop after the line number.
  2862.              We will see.  --rms, July 15, 1991.  */
  2863.           emit_nop (); ;
  2864.     break;}
  2865. case 293:
  2866. #line 1514 "c-parse.y"
  2867. { /* Don't start the loop till we have succeeded
  2868.              in parsing the end test.  This is to make sure
  2869.              that we end every loop we start.  */
  2870.           expand_start_loop (1);
  2871.           emit_line_note (input_filename, lineno);
  2872.           expand_exit_loop_if_false (NULL_PTR,
  2873.                          truthvalue_conversion (yyvsp[-1].ttype));
  2874.           position_after_white_space (); ;
  2875.     break;}
  2876. case 294:
  2877. #line 1523 "c-parse.y"
  2878. { expand_end_loop (); ;
  2879.     break;}
  2880. case 295:
  2881. #line 1526 "c-parse.y"
  2882. { emit_line_note (input_filename, lineno);
  2883.           expand_exit_loop_if_false (NULL_PTR,
  2884.                          truthvalue_conversion (yyvsp[-2].ttype));
  2885.           expand_end_loop ();
  2886.           clear_momentary (); ;
  2887.     break;}
  2888. case 296:
  2889. #line 1533 "c-parse.y"
  2890. { expand_end_loop ();
  2891.           clear_momentary (); ;
  2892.     break;}
  2893. case 297:
  2894. #line 1537 "c-parse.y"
  2895. { stmt_count++;
  2896.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  2897.           /* See comment in `while' alternative, above.  */
  2898.           emit_nop ();
  2899.           if (yyvsp[-1].ttype) c_expand_expr_stmt (yyvsp[-1].ttype);
  2900.           /* Next step is to call expand_start_loop_continue_elsewhere,
  2901.              but wait till after we parse the entire for (...).
  2902.              Otherwise, invalid input might cause us to call that
  2903.              fn without calling expand_end_loop.  */
  2904.         ;
  2905.     break;}
  2906. case 298:
  2907. #line 1549 "c-parse.y"
  2908. { yyvsp[0].lineno = lineno;
  2909.           yyval.filename = input_filename; ;
  2910.     break;}
  2911. case 299:
  2912. #line 1552 "c-parse.y"
  2913.           /* Start the loop.  Doing this after parsing
  2914.              all the expressions ensures we will end the loop.  */
  2915.           expand_start_loop_continue_elsewhere (1);
  2916.           /* Emit the end-test, with a line number.  */
  2917.           emit_line_note (yyvsp[-2].filename, yyvsp[-3].lineno);
  2918.           if (yyvsp[-4].ttype)
  2919.             expand_exit_loop_if_false (NULL_PTR,
  2920.                            truthvalue_conversion (yyvsp[-4].ttype));
  2921.           /* Don't let the tree nodes for $9 be discarded by
  2922.              clear_momentary during the parsing of the next stmt.  */
  2923.           push_momentary ();
  2924.           yyvsp[-3].lineno = lineno;
  2925.           yyvsp[-2].filename = input_filename;
  2926.           position_after_white_space (); ;
  2927.     break;}
  2928. case 300:
  2929. #line 1568 "c-parse.y"
  2930. { /* Emit the increment expression, with a line number.  */
  2931.           emit_line_note (yyvsp[-4].filename, yyvsp[-5].lineno);
  2932.           expand_loop_continue_here ();
  2933.           if (yyvsp[-3].ttype)
  2934.             c_expand_expr_stmt (yyvsp[-3].ttype);
  2935.           pop_momentary ();
  2936.           expand_end_loop (); ;
  2937.     break;}
  2938. case 301:
  2939. #line 1576 "c-parse.y"
  2940. { stmt_count++;
  2941.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  2942.           c_expand_start_case (yyvsp[-1].ttype);
  2943.           /* Don't let the tree nodes for $3 be discarded by
  2944.              clear_momentary during the parsing of the next stmt.  */
  2945.           push_momentary ();
  2946.           position_after_white_space (); ;
  2947.     break;}
  2948. case 302:
  2949. #line 1584 "c-parse.y"
  2950. { expand_end_case (yyvsp[-3].ttype);
  2951.           pop_momentary (); ;
  2952.     break;}
  2953. case 303:
  2954. #line 1587 "c-parse.y"
  2955. { stmt_count++;
  2956.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  2957.           if ( ! expand_exit_something ())
  2958.             error ("break statement not within loop or switch"); ;
  2959.     break;}
  2960. case 304:
  2961. #line 1592 "c-parse.y"
  2962. { stmt_count++;
  2963.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  2964.           if (! expand_continue_loop (NULL_PTR))
  2965.             error ("continue statement not within a loop"); ;
  2966.     break;}
  2967. case 305:
  2968. #line 1597 "c-parse.y"
  2969. { stmt_count++;
  2970.           emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
  2971.           c_expand_return (NULL_TREE); ;
  2972.     break;}
  2973. case 306:
  2974. #line 1601 "c-parse.y"
  2975. { stmt_count++;
  2976.           emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
  2977.           c_expand_return (yyvsp[-1].ttype); ;
  2978.     break;}
  2979. case 307:
  2980. #line 1605 "c-parse.y"
  2981. { stmt_count++;
  2982.           emit_line_note (yyvsp[-7].filename, yyvsp[-6].lineno);
  2983.           STRIP_NOPS (yyvsp[-2].ttype);
  2984.           if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
  2985.                && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
  2986.               || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
  2987.             expand_asm (yyvsp[-2].ttype);
  2988.           else
  2989.             error ("argument of `asm' is not a constant string"); ;
  2990.     break;}
  2991. case 308:
  2992. #line 1616 "c-parse.y"
  2993. { stmt_count++;
  2994.           emit_line_note (yyvsp[-9].filename, yyvsp[-8].lineno);
  2995.           c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
  2996.                      yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
  2997.                      input_filename, lineno); ;
  2998.     break;}
  2999. case 309:
  3000. #line 1623 "c-parse.y"
  3001. { stmt_count++;
  3002.           emit_line_note (yyvsp[-11].filename, yyvsp[-10].lineno);
  3003.           c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
  3004.                      yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
  3005.                      input_filename, lineno); ;
  3006.     break;}
  3007. case 310:
  3008. #line 1631 "c-parse.y"
  3009. { stmt_count++;
  3010.           emit_line_note (yyvsp[-13].filename, yyvsp[-12].lineno);
  3011.           c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
  3012.                      yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
  3013.                      input_filename, lineno); ;
  3014.     break;}
  3015. case 311:
  3016. #line 1637 "c-parse.y"
  3017. { tree decl;
  3018.           stmt_count++;
  3019.           emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
  3020.           decl = lookup_label (yyvsp[-1].ttype);
  3021.           if (decl != 0)
  3022.             {
  3023.               TREE_USED (decl) = 1;
  3024.               expand_goto (decl);
  3025.             }
  3026.         ;
  3027.     break;}
  3028. case 312:
  3029. #line 1648 "c-parse.y"
  3030. { stmt_count++;
  3031.           emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
  3032.           expand_computed_goto (convert (ptr_type_node, yyvsp[-1].ttype)); ;
  3033.     break;}
  3034. case 315:
  3035. #line 1661 "c-parse.y"
  3036. {
  3037.         /* The value returned by this action is  */
  3038.         /*      1 if everything is OK */ 
  3039.         /*      0 in case of error or already bound iterator */
  3040.  
  3041.         yyval.itype = 0;
  3042.         if (TREE_CODE (yyvsp[-1].ttype) != VAR_DECL)
  3043.           error ("invalid `for (ITERATOR)' syntax");
  3044.         else if (! ITERATOR_P (yyvsp[-1].ttype))
  3045.           error ("`%s' is not an iterator",
  3046.              IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
  3047.         else if (ITERATOR_BOUND_P (yyvsp[-1].ttype))
  3048.           error ("`for (%s)' inside expansion of same iterator",
  3049.              IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
  3050.         else
  3051.           {
  3052.         yyval.itype = 1;
  3053.         iterator_for_loop_start (yyvsp[-1].ttype);
  3054.           }
  3055.       ;
  3056.     break;}
  3057. case 316:
  3058. #line 1682 "c-parse.y"
  3059. {
  3060.         if (yyvsp[-1].itype)
  3061.           iterator_for_loop_end (yyvsp[-3].ttype);
  3062.       ;
  3063.     break;}
  3064. case 317:
  3065. #line 1714 "c-parse.y"
  3066. { register tree value = check_case_value (yyvsp[-1].ttype);
  3067.           register tree label
  3068.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3069.  
  3070.           stmt_count++;
  3071.  
  3072.           if (value != error_mark_node)
  3073.             {
  3074.               tree duplicate;
  3075.               int success = pushcase (value, convert_and_check,
  3076.                           label, &duplicate);
  3077.               if (success == 1)
  3078.             error ("case label not within a switch statement");
  3079.               else if (success == 2)
  3080.             {
  3081.               error ("duplicate case value");
  3082.               error_with_decl (duplicate, "this is the first entry for that value");
  3083.             }
  3084.               else if (success == 3)
  3085.             warning ("case value out of range");
  3086.               else if (success == 5)
  3087.             error ("case label within scope of cleanup or variable array");
  3088.             }
  3089.           position_after_white_space (); ;
  3090.     break;}
  3091. case 318:
  3092. #line 1739 "c-parse.y"
  3093. { register tree value1 = check_case_value (yyvsp[-3].ttype);
  3094.           register tree value2 = check_case_value (yyvsp[-1].ttype);
  3095.           register tree label
  3096.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3097.  
  3098.           stmt_count++;
  3099.  
  3100.           if (value1 != error_mark_node && value2 != error_mark_node)
  3101.             {
  3102.               tree duplicate;
  3103.               int success = pushcase_range (value1, value2,
  3104.                             convert_and_check, label,
  3105.                             &duplicate);
  3106.               if (success == 1)
  3107.             error ("case label not within a switch statement");
  3108.               else if (success == 2)
  3109.             {
  3110.               error ("duplicate case value");
  3111.               error_with_decl (duplicate, "this is the first entry for that value");
  3112.             }
  3113.               else if (success == 3)
  3114.             warning ("case value out of range");
  3115.               else if (success == 4)
  3116.             warning ("empty case range");
  3117.               else if (success == 5)
  3118.             error ("case label within scope of cleanup or variable array");
  3119.             }
  3120.           position_after_white_space (); ;
  3121.     break;}
  3122. case 319:
  3123. #line 1768 "c-parse.y"
  3124. {
  3125.           tree duplicate;
  3126.           register tree label
  3127.             = build_decl (LABEL_DECL, NULL_TREE, NULL_TREE);
  3128.           int success = pushcase (NULL_TREE, 0, label, &duplicate);
  3129.           stmt_count++;
  3130.           if (success == 1)
  3131.             error ("default label not within a switch statement");
  3132.           else if (success == 2)
  3133.             {
  3134.               error ("multiple default labels in one switch");
  3135.               error_with_decl (duplicate, "this is the first default label");
  3136.             }
  3137.           position_after_white_space (); ;
  3138.     break;}
  3139. case 320:
  3140. #line 1783 "c-parse.y"
  3141. { tree label = define_label (input_filename, lineno, yyvsp[-1].ttype);
  3142.           stmt_count++;
  3143.           emit_nop ();
  3144.           if (label)
  3145.             expand_label (label);
  3146.           position_after_white_space (); ;
  3147.     break;}
  3148. case 321:
  3149. #line 1795 "c-parse.y"
  3150. { emit_line_note (input_filename, lineno);
  3151.           yyval.ttype = NULL_TREE; ;
  3152.     break;}
  3153. case 322:
  3154. #line 1798 "c-parse.y"
  3155. { emit_line_note (input_filename, lineno); ;
  3156.     break;}
  3157. case 323:
  3158. #line 1803 "c-parse.y"
  3159. { yyval.ttype = NULL_TREE; ;
  3160.     break;}
  3161. case 325:
  3162. #line 1810 "c-parse.y"
  3163. { yyval.ttype = NULL_TREE; ;
  3164.     break;}
  3165. case 328:
  3166. #line 1817 "c-parse.y"
  3167. { yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
  3168.     break;}
  3169. case 329:
  3170. #line 1822 "c-parse.y"
  3171. { yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
  3172.     break;}
  3173. case 330:
  3174. #line 1827 "c-parse.y"
  3175. { yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), NULL_TREE); ;
  3176.     break;}
  3177. case 331:
  3178. #line 1829 "c-parse.y"
  3179. { yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), yyvsp[-2].ttype); ;
  3180.     break;}
  3181. case 332:
  3182. #line 1835 "c-parse.y"
  3183. { pushlevel (0);
  3184.           clear_parm_order ();
  3185.           declare_parm_level (0); ;
  3186.     break;}
  3187. case 333:
  3188. #line 1839 "c-parse.y"
  3189. { yyval.ttype = yyvsp[0].ttype;
  3190.           parmlist_tags_warning ();
  3191.           poplevel (0, 0, 0); ;
  3192.     break;}
  3193. case 335:
  3194. #line 1847 "c-parse.y"
  3195. { tree parm;
  3196.           if (pedantic)
  3197.             pedwarn ("ANSI C forbids forward parameter declarations");
  3198.           /* Mark the forward decls as such.  */
  3199.           for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
  3200.             TREE_ASM_WRITTEN (parm) = 1;
  3201.           clear_parm_order (); ;
  3202.     break;}
  3203. case 336:
  3204. #line 1855 "c-parse.y"
  3205. { yyval.ttype = yyvsp[0].ttype; ;
  3206.     break;}
  3207. case 337:
  3208. #line 1857 "c-parse.y"
  3209. { yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); ;
  3210.     break;}
  3211. case 338:
  3212. #line 1863 "c-parse.y"
  3213. { yyval.ttype = get_parm_info (0); ;
  3214.     break;}
  3215. case 339:
  3216. #line 1865 "c-parse.y"
  3217. { yyval.ttype = get_parm_info (0);
  3218.           if (pedantic)
  3219.             pedwarn ("ANSI C requires a named argument before `...'");
  3220.         ;
  3221.     break;}
  3222. case 340:
  3223. #line 1870 "c-parse.y"
  3224. { yyval.ttype = get_parm_info (1); ;
  3225.     break;}
  3226. case 341:
  3227. #line 1872 "c-parse.y"
  3228. { yyval.ttype = get_parm_info (0); ;
  3229.     break;}
  3230. case 342:
  3231. #line 1877 "c-parse.y"
  3232. { push_parm_decl (yyvsp[0].ttype); ;
  3233.     break;}
  3234. case 343:
  3235. #line 1879 "c-parse.y"
  3236. { push_parm_decl (yyvsp[0].ttype); ;
  3237.     break;}
  3238. case 344:
  3239. #line 1886 "c-parse.y"
  3240. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype)    ; ;
  3241.     break;}
  3242. case 345:
  3243. #line 1888 "c-parse.y"
  3244. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype)    ; ;
  3245.     break;}
  3246. case 346:
  3247. #line 1890 "c-parse.y"
  3248. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3249.     break;}
  3250. case 347:
  3251. #line 1892 "c-parse.y"
  3252. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype)    ; ;
  3253.     break;}
  3254. case 348:
  3255. #line 1894 "c-parse.y"
  3256. { yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
  3257.     break;}
  3258. case 349:
  3259. #line 1901 "c-parse.y"
  3260. { pushlevel (0);
  3261.           clear_parm_order ();
  3262.           declare_parm_level (1); ;
  3263.     break;}
  3264. case 350:
  3265. #line 1905 "c-parse.y"
  3266. { yyval.ttype = yyvsp[0].ttype;
  3267.           parmlist_tags_warning ();
  3268.           poplevel (0, 0, 0); ;
  3269.     break;}
  3270. case 352:
  3271. #line 1913 "c-parse.y"
  3272. { tree t;
  3273.           for (t = yyvsp[-1].ttype; t; t = TREE_CHAIN (t))
  3274.             if (TREE_VALUE (t) == NULL_TREE)
  3275.               error ("`...' in old-style identifier list");
  3276.           yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, yyvsp[-1].ttype); ;
  3277.     break;}
  3278. case 353:
  3279. #line 1923 "c-parse.y"
  3280. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  3281.     break;}
  3282. case 354:
  3283. #line 1925 "c-parse.y"
  3284. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  3285.     break;}
  3286. case 355:
  3287. #line 1931 "c-parse.y"
  3288. { yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
  3289.     break;}
  3290. case 356:
  3291. #line 1933 "c-parse.y"
  3292. { yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
  3293.     break;}
  3294. }
  3295.    /* the action file gets copied in in place of this dollarsign */
  3296. #line 465 "/usr/lib/bison.simple"
  3297.  
  3298.   yyvsp -= yylen;
  3299.   yyssp -= yylen;
  3300. #ifdef YYLSP_NEEDED
  3301.   yylsp -= yylen;
  3302. #endif
  3303.  
  3304. #if YYDEBUG != 0
  3305.   if (yydebug)
  3306.     {
  3307.       short *ssp1 = yyss - 1;
  3308.       fprintf (stderr, "state stack now");
  3309.       while (ssp1 != yyssp)
  3310.     fprintf (stderr, " %d", *++ssp1);
  3311.       fprintf (stderr, "\n");
  3312.     }
  3313. #endif
  3314.  
  3315.   *++yyvsp = yyval;
  3316.  
  3317. #ifdef YYLSP_NEEDED
  3318.   yylsp++;
  3319.   if (yylen == 0)
  3320.     {
  3321.       yylsp->first_line = yylloc.first_line;
  3322.       yylsp->first_column = yylloc.first_column;
  3323.       yylsp->last_line = (yylsp-1)->last_line;
  3324.       yylsp->last_column = (yylsp-1)->last_column;
  3325.       yylsp->text = 0;
  3326.     }
  3327.   else
  3328.     {
  3329.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  3330.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  3331.     }
  3332. #endif
  3333.  
  3334.   /* Now "shift" the result of the reduction.
  3335.      Determine what state that goes to,
  3336.      based on the state we popped back to
  3337.      and the rule number reduced by.  */
  3338.  
  3339.   yyn = yyr1[yyn];
  3340.  
  3341.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  3342.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  3343.     yystate = yytable[yystate];
  3344.   else
  3345.     yystate = yydefgoto[yyn - YYNTBASE];
  3346.  
  3347.   goto yynewstate;
  3348.  
  3349. yyerrlab:   /* here on detecting error */
  3350.  
  3351.   if (! yyerrstatus)
  3352.     /* If not already recovering from an error, report this error.  */
  3353.     {
  3354.       ++yynerrs;
  3355.  
  3356. #ifdef YYERROR_VERBOSE
  3357.       yyn = yypact[yystate];
  3358.  
  3359.       if (yyn > YYFLAG && yyn < YYLAST)
  3360.     {
  3361.       int size = 0;
  3362.       char *msg;
  3363.       int x, count;
  3364.  
  3365.       count = 0;
  3366.       /* Start X at -yyn if nec to avoid negative indexes in yycheck.  */
  3367.       for (x = (yyn < 0 ? -yyn : 0);
  3368.            x < (sizeof(yytname) / sizeof(char *)); x++)
  3369.         if (yycheck[x + yyn] == x)
  3370.           size += strlen(yytname[x]) + 15, count++;
  3371.       msg = (char *) malloc(size + 15);
  3372.       if (msg != 0)
  3373.         {
  3374.           strcpy(msg, "parse error");
  3375.  
  3376.           if (count < 5)
  3377.         {
  3378.           count = 0;
  3379.           for (x = (yyn < 0 ? -yyn : 0);
  3380.                x < (sizeof(yytname) / sizeof(char *)); x++)
  3381.             if (yycheck[x + yyn] == x)
  3382.               {
  3383.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  3384.             strcat(msg, yytname[x]);
  3385.             strcat(msg, "'");
  3386.             count++;
  3387.               }
  3388.         }
  3389.           yyerror(msg);
  3390.           free(msg);
  3391.         }
  3392.       else
  3393.         yyerror ("parse error; also virtual memory exceeded");
  3394.     }
  3395.       else
  3396. #endif /* YYERROR_VERBOSE */
  3397.     yyerror("parse error");
  3398.     }
  3399.  
  3400.   goto yyerrlab1;
  3401. yyerrlab1:   /* here on error raised explicitly by an action */
  3402.  
  3403.   if (yyerrstatus == 3)
  3404.     {
  3405.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  3406.  
  3407.       /* return failure if at end of input */
  3408.       if (yychar == YYEOF)
  3409.     YYABORT;
  3410.  
  3411. #if YYDEBUG != 0
  3412.       if (yydebug)
  3413.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  3414. #endif
  3415.  
  3416.       yychar = YYEMPTY;
  3417.     }
  3418.  
  3419.   /* Else will try to reuse lookahead token
  3420.      after shifting the error token.  */
  3421.  
  3422.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  3423.  
  3424.   goto yyerrhandle;
  3425.  
  3426. yyerrdefault:  /* current state does not do anything special for the error token. */
  3427.  
  3428. #if 0
  3429.   /* This is wrong; only states that explicitly want error tokens
  3430.      should shift them.  */
  3431.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  3432.   if (yyn) goto yydefault;
  3433. #endif
  3434.  
  3435. yyerrpop:   /* pop the current state because it cannot handle the error token */
  3436.  
  3437.   if (yyssp == yyss) YYABORT;
  3438.   yyvsp--;
  3439.   yystate = *--yyssp;
  3440. #ifdef YYLSP_NEEDED
  3441.   yylsp--;
  3442. #endif
  3443.  
  3444. #if YYDEBUG != 0
  3445.   if (yydebug)
  3446.     {
  3447.       short *ssp1 = yyss - 1;
  3448.       fprintf (stderr, "Error: state stack now");
  3449.       while (ssp1 != yyssp)
  3450.     fprintf (stderr, " %d", *++ssp1);
  3451.       fprintf (stderr, "\n");
  3452.     }
  3453. #endif
  3454.  
  3455. yyerrhandle:
  3456.  
  3457.   yyn = yypact[yystate];
  3458.   if (yyn == YYFLAG)
  3459.     goto yyerrdefault;
  3460.  
  3461.   yyn += YYTERROR;
  3462.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  3463.     goto yyerrdefault;
  3464.  
  3465.   yyn = yytable[yyn];
  3466.   if (yyn < 0)
  3467.     {
  3468.       if (yyn == YYFLAG)
  3469.     goto yyerrpop;
  3470.       yyn = -yyn;
  3471.       goto yyreduce;
  3472.     }
  3473.   else if (yyn == 0)
  3474.     goto yyerrpop;
  3475.  
  3476.   if (yyn == YYFINAL)
  3477.     YYACCEPT;
  3478.  
  3479. #if YYDEBUG != 0
  3480.   if (yydebug)
  3481.     fprintf(stderr, "Shifting error token, ");
  3482. #endif
  3483.  
  3484.   *++yyvsp = yylval;
  3485. #ifdef YYLSP_NEEDED
  3486.   *++yylsp = yylloc;
  3487. #endif
  3488.  
  3489.   yystate = yyn;
  3490.   goto yynewstate;
  3491. }
  3492. #line 1936 "c-parse.y"
  3493.  
  3494.