aboutsummaryrefslogtreecommitdiff
path: root/gcc/objc/objc-parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/objc/objc-parse.c')
-rw-r--r--gcc/objc/objc-parse.c5102
1 files changed, 0 insertions, 5102 deletions
diff --git a/gcc/objc/objc-parse.c b/gcc/objc/objc-parse.c
deleted file mode 100644
index ed1eb18..0000000
--- a/gcc/objc/objc-parse.c
+++ /dev/null
@@ -1,5102 +0,0 @@
-
-/* A Bison parser, made from objc-parse.y
- by GNU Bison version 1.28 */
-
-#define YYBISON 1 /* Identify Bison output. */
-
-#define IDENTIFIER 257
-#define TYPENAME 258
-#define SCSPEC 259
-#define TYPESPEC 260
-#define TYPE_QUAL 261
-#define CONSTANT 262
-#define STRING 263
-#define ELLIPSIS 264
-#define SIZEOF 265
-#define ENUM 266
-#define STRUCT 267
-#define UNION 268
-#define IF 269
-#define ELSE 270
-#define WHILE 271
-#define DO 272
-#define FOR 273
-#define SWITCH 274
-#define CASE 275
-#define DEFAULT 276
-#define BREAK 277
-#define CONTINUE 278
-#define RETURN 279
-#define GOTO 280
-#define ASM_KEYWORD 281
-#define TYPEOF 282
-#define ALIGNOF 283
-#define ATTRIBUTE 284
-#define EXTENSION 285
-#define LABEL 286
-#define REALPART 287
-#define IMAGPART 288
-#define VA_ARG 289
-#define PTR_VALUE 290
-#define PTR_BASE 291
-#define PTR_EXTENT 292
-#define END_OF_LINE 293
-#define ASSIGN 294
-#define OROR 295
-#define ANDAND 296
-#define EQCOMPARE 297
-#define ARITHCOMPARE 298
-#define LSHIFT 299
-#define RSHIFT 300
-#define UNARY 301
-#define PLUSPLUS 302
-#define MINUSMINUS 303
-#define HYPERUNARY 304
-#define POINTSAT 305
-#define INTERFACE 306
-#define IMPLEMENTATION 307
-#define END 308
-#define SELECTOR 309
-#define DEFS 310
-#define ENCODE 311
-#define CLASSNAME 312
-#define PUBLIC 313
-#define PRIVATE 314
-#define PROTECTED 315
-#define PROTOCOL 316
-#define OBJECTNAME 317
-#define CLASS 318
-#define ALIAS 319
-#define OBJC_STRING 320
-
-#line 34 "objc-parse.y"
-
-#include "config.h"
-#include "system.h"
-#include <setjmp.h>
-#include "tree.h"
-#include "input.h"
-#include "c-lex.h"
-#include "c-tree.h"
-#include "flags.h"
-#include "output.h"
-#include "toplev.h"
-#include "ggc.h"
-
-#ifdef MULTIBYTE_CHARS
-#include <locale.h>
-#endif
-
-#include "objc-act.h"
-
-/* Since parsers are distinct for each language, put the language string
- definition here. */
-const char * const language_string = "GNU Obj-C";
-
-/* Like YYERROR but do call yyerror. */
-#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
-
-/* Cause the `yydebug' variable to be defined. */
-#define YYDEBUG 1
-
-#line 66 "objc-parse.y"
-typedef union {long itype; tree ttype; enum tree_code code;
- const char *filename; int lineno; int ends_in_label; } YYSTYPE;
-#line 198 "objc-parse.y"
-
-/* Number of statements (loosely speaking) and compound statements
- seen so far. */
-static int stmt_count;
-static int compstmt_count;
-
-/* Input file and line number of the end of the body of last simple_if;
- used by the stmt-rule immediately after simple_if returns. */
-static const char *if_stmt_file;
-static int if_stmt_line;
-
-/* List of types and structure classes of the current declaration. */
-static tree current_declspecs = NULL_TREE;
-static tree prefix_attributes = NULL_TREE;
-
-/* Stack of saved values of current_declspecs and prefix_attributes. */
-static tree declspec_stack;
-
-/* For __extension__, save/restore the warning flags which are
- controlled by __extension__. */
-#define SAVE_WARN_FLAGS() \
- size_int (pedantic | (warn_pointer_arith << 1))
-#define RESTORE_WARN_FLAGS(tval) \
- do { \
- int val = tree_low_cst (tval, 0); \
- pedantic = val & 1; \
- warn_pointer_arith = (val >> 1) & 1; \
- } while (0)
-
-/* Objective-C specific information */
-
-tree objc_interface_context;
-tree objc_implementation_context;
-tree objc_method_context;
-tree objc_ivar_chain;
-tree objc_ivar_context;
-enum tree_code objc_inherit_code;
-int objc_receiver_context;
-int objc_public_flag;
-
-
-/* Tell yyparse how to print a token's value, if yydebug is set. */
-
-#define YYPRINT(FILE,YYCHAR,YYLVAL) yyprint(FILE,YYCHAR,YYLVAL)
-extern void yyprint PARAMS ((FILE *, int, YYSTYPE));
-
-/* Add GC roots for variables local to this file. */
-void
-c_parse_init ()
-{
- ggc_add_tree_root (&declspec_stack, 1);
- ggc_add_tree_root (&current_declspecs, 1);
- ggc_add_tree_root (&prefix_attributes, 1);
- ggc_add_tree_root (&objc_interface_context, 1);
- ggc_add_tree_root (&objc_implementation_context, 1);
- ggc_add_tree_root (&objc_method_context, 1);
- ggc_add_tree_root (&objc_ivar_chain, 1);
- ggc_add_tree_root (&objc_ivar_context, 1);
-}
-
-#include <stdio.h>
-
-#ifndef __cplusplus
-#ifndef __STDC__
-#define const
-#endif
-#endif
-
-
-
-#define YYFINAL 969
-#define YYFLAG -32768
-#define YYNTBASE 89
-
-#define YYTRANSLATE(x) ((unsigned)(x) <= 320 ? yytranslate[x] : 317)
-
-static const char yytranslate[] = { 0,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 85, 2, 2, 2, 57, 48, 2, 64,
- 81, 55, 53, 86, 54, 63, 56, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 43, 82, 2,
- 41, 2, 42, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 65, 2, 88, 47, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 87, 46, 83, 84, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 1, 3, 4, 5, 6,
- 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
- 17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
- 27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
- 37, 38, 39, 40, 44, 45, 49, 50, 51, 52,
- 58, 59, 60, 61, 62, 66, 67, 68, 69, 70,
- 71, 72, 73, 74, 75, 76, 77, 78, 79, 80
-};
-
-#if YYDEBUG != 0
-static const short yyprhs[] = { 0,
- 0, 1, 3, 4, 7, 8, 12, 14, 16, 18,
- 24, 27, 31, 36, 41, 44, 47, 50, 53, 55,
- 56, 57, 65, 70, 71, 72, 80, 85, 86, 87,
- 94, 98, 100, 102, 104, 106, 108, 110, 112, 114,
- 116, 118, 120, 122, 123, 125, 127, 131, 133, 136,
- 139, 142, 145, 148, 153, 156, 161, 164, 167, 174,
- 176, 178, 180, 185, 186, 194, 196, 200, 204, 208,
- 212, 216, 220, 224, 228, 232, 236, 240, 244, 245,
- 250, 251, 256, 257, 258, 266, 267, 273, 277, 281,
- 283, 285, 287, 291, 295, 299, 303, 308, 313, 317,
- 321, 324, 327, 329, 331, 333, 335, 337, 339, 342,
- 344, 347, 348, 350, 353, 357, 359, 361, 364, 367,
- 372, 377, 380, 383, 387, 389, 391, 394, 397, 398,
- 399, 404, 409, 413, 417, 420, 423, 426, 429, 433,
- 434, 437, 440, 443, 446, 450, 451, 454, 457, 459,
- 461, 464, 467, 469, 471, 474, 477, 480, 484, 485,
- 488, 490, 492, 494, 497, 500, 502, 507, 512, 514,
- 516, 518, 520, 524, 526, 530, 531, 536, 537, 544,
- 548, 549, 556, 560, 561, 563, 565, 568, 575, 577,
- 581, 582, 584, 589, 596, 601, 603, 605, 607, 609,
- 611, 612, 617, 619, 620, 623, 625, 629, 633, 636,
- 637, 642, 644, 645, 650, 652, 654, 656, 659, 662,
- 663, 664, 670, 671, 672, 678, 680, 682, 686, 690,
- 695, 699, 703, 707, 709, 711, 715, 720, 724, 728,
- 732, 734, 738, 742, 746, 751, 755, 759, 761, 763,
- 766, 768, 771, 773, 776, 777, 785, 791, 794, 795,
- 803, 809, 812, 813, 822, 823, 831, 834, 835, 837,
- 838, 840, 842, 845, 846, 850, 853, 858, 862, 868,
- 872, 874, 876, 879, 881, 885, 890, 897, 903, 905,
- 909, 911, 913, 917, 920, 923, 924, 926, 928, 931,
- 932, 935, 939, 943, 946, 950, 955, 959, 962, 966,
- 969, 973, 975, 977, 980, 983, 984, 986, 989, 990,
- 991, 993, 995, 998, 1002, 1004, 1007, 1009, 1011, 1017,
- 1022, 1027, 1030, 1033, 1036, 1039, 1044, 1045, 1050, 1051,
- 1052, 1056, 1061, 1065, 1067, 1069, 1071, 1073, 1076, 1077,
- 1082, 1084, 1088, 1089, 1090, 1098, 1104, 1107, 1108, 1109,
- 1110, 1123, 1124, 1131, 1134, 1137, 1140, 1144, 1151, 1160,
- 1171, 1184, 1188, 1193, 1195, 1197, 1198, 1205, 1209, 1215,
- 1218, 1222, 1223, 1225, 1226, 1228, 1229, 1231, 1233, 1237,
- 1242, 1244, 1248, 1249, 1252, 1255, 1256, 1261, 1264, 1265,
- 1267, 1269, 1273, 1275, 1279, 1284, 1289, 1294, 1299, 1304,
- 1305, 1308, 1310, 1313, 1315, 1319, 1321, 1325, 1327, 1329,
- 1331, 1333, 1335, 1337, 1339, 1341, 1345, 1349, 1354, 1355,
- 1356, 1367, 1368, 1375, 1376, 1377, 1390, 1391, 1400, 1401,
- 1408, 1411, 1412, 1421, 1426, 1427, 1437, 1443, 1444, 1451,
- 1452, 1454, 1458, 1462, 1464, 1466, 1468, 1470, 1471, 1475,
- 1478, 1482, 1486, 1488, 1489, 1491, 1495, 1497, 1501, 1504,
- 1505, 1506, 1507, 1515, 1516, 1517, 1518, 1526, 1527, 1528,
- 1531, 1533, 1535, 1538, 1539, 1543, 1545, 1547, 1548, 1549,
- 1555, 1556, 1557, 1563, 1568, 1570, 1576, 1579, 1580, 1583,
- 1584, 1586, 1588, 1590, 1593, 1596, 1601, 1604, 1607, 1609,
- 1613, 1616, 1619, 1622, 1623, 1626, 1627, 1631, 1633, 1635,
- 1638, 1640, 1642, 1644, 1646, 1648, 1650, 1652, 1654, 1656,
- 1658, 1660, 1662, 1664, 1666, 1668, 1670, 1672, 1674, 1676,
- 1678, 1680, 1682, 1684, 1686, 1688, 1695, 1699, 1705, 1708,
- 1710, 1712, 1714, 1717, 1719, 1723, 1726, 1728, 1730, 1731,
- 1732, 1739, 1741, 1743, 1745, 1748, 1751, 1753, 1758, 1763
-};
-
-static const short yyrhs[] = { -1,
- 90, 0, 0, 91, 93, 0, 0, 90, 92, 93,
- 0, 95, 0, 94, 0, 248, 0, 27, 64, 104,
- 81, 82, 0, 247, 93, 0, 127, 141, 82, 0,
- 134, 127, 141, 82, 0, 130, 127, 140, 82, 0,
- 134, 82, 0, 130, 82, 0, 1, 82, 0, 1,
- 83, 0, 82, 0, 0, 0, 130, 127, 169, 96,
- 121, 97, 203, 0, 130, 127, 169, 1, 0, 0,
- 0, 134, 127, 172, 98, 121, 99, 203, 0, 134,
- 127, 172, 1, 0, 0, 0, 127, 172, 100, 121,
- 101, 203, 0, 127, 172, 1, 0, 3, 0, 4,
- 0, 77, 0, 72, 0, 48, 0, 54, 0, 53,
- 0, 59, 0, 60, 0, 84, 0, 85, 0, 106,
- 0, 0, 106, 0, 112, 0, 106, 86, 112, 0,
- 118, 0, 55, 110, 0, 247, 110, 0, 103, 110,
- 0, 45, 102, 0, 108, 107, 0, 108, 64, 190,
- 81, 0, 109, 107, 0, 109, 64, 190, 81, 0,
- 33, 110, 0, 34, 110, 0, 35, 64, 112, 86,
- 190, 81, 0, 11, 0, 29, 0, 107, 0, 64,
- 190, 81, 110, 0, 0, 64, 190, 81, 87, 111,
- 155, 83, 0, 110, 0, 112, 53, 112, 0, 112,
- 54, 112, 0, 112, 55, 112, 0, 112, 56, 112,
- 0, 112, 57, 112, 0, 112, 51, 112, 0, 112,
- 52, 112, 0, 112, 50, 112, 0, 112, 49, 112,
- 0, 112, 48, 112, 0, 112, 46, 112, 0, 112,
- 47, 112, 0, 0, 112, 45, 113, 112, 0, 0,
- 112, 44, 114, 112, 0, 0, 0, 112, 42, 115,
- 104, 43, 116, 112, 0, 0, 112, 42, 117, 43,
- 112, 0, 112, 41, 112, 0, 112, 40, 112, 0,
- 3, 0, 8, 0, 119, 0, 64, 104, 81, 0,
- 64, 1, 81, 0, 206, 205, 81, 0, 206, 1,
- 81, 0, 118, 64, 105, 81, 0, 118, 65, 104,
- 88, 0, 118, 63, 102, 0, 118, 62, 102, 0,
- 118, 59, 0, 118, 60, 0, 308, 0, 314, 0,
- 315, 0, 316, 0, 120, 0, 9, 0, 119, 9,
- 0, 80, 0, 120, 80, 0, 0, 123, 0, 123,
- 10, 0, 212, 213, 124, 0, 122, 0, 198, 0,
- 123, 122, 0, 122, 198, 0, 132, 127, 140, 82,
- 0, 135, 127, 141, 82, 0, 132, 82, 0, 135,
- 82, 0, 212, 213, 129, 0, 125, 0, 198, 0,
- 126, 125, 0, 125, 198, 0, 0, 0, 130, 127,
- 140, 82, 0, 134, 127, 141, 82, 0, 130, 127,
- 163, 0, 134, 127, 166, 0, 130, 82, 0, 134,
- 82, 0, 247, 129, 0, 138, 131, 0, 134, 138,
- 131, 0, 0, 131, 139, 0, 131, 5, 0, 131,
- 148, 0, 138, 133, 0, 135, 138, 133, 0, 0,
- 133, 139, 0, 133, 5, 0, 135, 0, 148, 0,
- 134, 135, 0, 134, 148, 0, 7, 0, 5, 0,
- 135, 7, 0, 135, 5, 0, 138, 137, 0, 192,
- 138, 137, 0, 0, 137, 139, 0, 6, 0, 176,
- 0, 4, 0, 72, 264, 0, 77, 264, 0, 265,
- 0, 28, 64, 104, 81, 0, 28, 64, 190, 81,
- 0, 6, 0, 7, 0, 176, 0, 143, 0, 140,
- 86, 143, 0, 145, 0, 141, 86, 143, 0, 0,
- 27, 64, 119, 81, 0, 0, 169, 142, 147, 41,
- 144, 153, 0, 169, 142, 147, 0, 0, 172, 142,
- 147, 41, 146, 153, 0, 172, 142, 147, 0, 0,
- 148, 0, 149, 0, 148, 149, 0, 30, 64, 64,
- 150, 81, 81, 0, 151, 0, 150, 86, 151, 0,
- 0, 152, 0, 152, 64, 3, 81, 0, 152, 64,
- 3, 86, 106, 81, 0, 152, 64, 105, 81, 0,
- 102, 0, 5, 0, 6, 0, 7, 0, 112, 0,
- 0, 87, 154, 155, 83, 0, 1, 0, 0, 156,
- 181, 0, 157, 0, 156, 86, 157, 0, 161, 41,
- 159, 0, 162, 159, 0, 0, 102, 43, 158, 159,
- 0, 159, 0, 0, 87, 160, 155, 83, 0, 112,
- 0, 1, 0, 162, 0, 161, 162, 0, 63, 102,
- 0, 0, 0, 169, 164, 121, 165, 207, 0, 0,
- 0, 172, 167, 121, 168, 207, 0, 170, 0, 172,
- 0, 64, 170, 81, 0, 170, 64, 242, 0, 170,
- 65, 104, 88, 0, 170, 65, 88, 0, 55, 193,
- 170, 0, 148, 128, 170, 0, 4, 0, 77, 0,
- 171, 64, 242, 0, 171, 65, 104, 88, 0, 171,
- 65, 88, 0, 55, 193, 171, 0, 148, 128, 171,
- 0, 4, 0, 172, 64, 242, 0, 64, 172, 81,
- 0, 55, 193, 172, 0, 172, 65, 104, 88, 0,
- 172, 65, 88, 0, 148, 128, 172, 0, 3, 0,
- 13, 0, 13, 148, 0, 14, 0, 14, 148, 0,
- 12, 0, 12, 148, 0, 0, 173, 102, 87, 177,
- 183, 83, 147, 0, 173, 87, 183, 83, 147, 0,
- 173, 102, 0, 0, 174, 102, 87, 178, 183, 83,
- 147, 0, 174, 87, 183, 83, 147, 0, 174, 102,
- 0, 0, 175, 102, 87, 179, 188, 182, 83, 147,
- 0, 0, 175, 87, 180, 188, 182, 83, 147, 0,
- 175, 102, 0, 0, 86, 0, 0, 86, 0, 184,
- 0, 184, 185, 0, 0, 184, 185, 82, 0, 184,
- 82, 0, 70, 64, 72, 81, 0, 136, 127, 186,
- 0, 136, 127, 212, 213, 147, 0, 192, 127, 186,
- 0, 192, 0, 1, 0, 247, 185, 0, 187, 0,
- 186, 86, 187, 0, 212, 213, 169, 147, 0, 212,
- 213, 169, 43, 112, 147, 0, 212, 213, 43, 112,
- 147, 0, 189, 0, 188, 86, 189, 0, 1, 0,
- 102, 0, 102, 41, 112, 0, 136, 191, 0, 192,
- 191, 0, 0, 194, 0, 7, 0, 192, 7, 0,
- 0, 193, 7, 0, 64, 194, 81, 0, 55, 193,
- 194, 0, 55, 193, 0, 194, 64, 235, 0, 194,
- 65, 104, 88, 0, 194, 65, 88, 0, 64, 235,
- 0, 65, 104, 88, 0, 65, 88, 0, 148, 128,
- 194, 0, 196, 0, 215, 0, 196, 215, 0, 196,
- 198, 0, 0, 195, 0, 1, 82, 0, 0, 0,
- 201, 0, 202, 0, 201, 202, 0, 32, 246, 82,
- 0, 207, 0, 1, 207, 0, 87, 0, 83, 0,
- 199, 200, 126, 197, 83, 0, 199, 200, 1, 83,
- 0, 199, 200, 195, 83, 0, 64, 87, 0, 204,
- 205, 0, 209, 214, 0, 209, 1, 0, 15, 64,
- 104, 81, 0, 0, 18, 211, 214, 17, 0, 0,
- 0, 212, 213, 217, 0, 212, 213, 228, 214, 0,
- 212, 213, 216, 0, 217, 0, 228, 0, 207, 0,
- 225, 0, 104, 82, 0, 0, 208, 16, 218, 214,
- 0, 208, 0, 208, 16, 1, 0, 0, 0, 17,
- 219, 64, 104, 81, 220, 214, 0, 210, 64, 104,
- 81, 82, 0, 210, 1, 0, 0, 0, 0, 19,
- 64, 230, 82, 221, 230, 82, 222, 230, 81, 223,
- 214, 0, 0, 20, 64, 104, 81, 224, 214, 0,
- 23, 82, 0, 24, 82, 0, 25, 82, 0, 25,
- 104, 82, 0, 27, 229, 64, 104, 81, 82, 0,
- 27, 229, 64, 104, 43, 231, 81, 82, 0, 27,
- 229, 64, 104, 43, 231, 43, 231, 81, 82, 0,
- 27, 229, 64, 104, 43, 231, 43, 231, 43, 234,
- 81, 82, 0, 26, 102, 82, 0, 26, 55, 104,
- 82, 0, 82, 0, 226, 0, 0, 19, 64, 118,
- 81, 227, 214, 0, 21, 112, 43, 0, 21, 112,
- 10, 112, 43, 0, 22, 43, 0, 102, 43, 147,
- 0, 0, 7, 0, 0, 104, 0, 0, 232, 0,
- 233, 0, 232, 86, 233, 0, 9, 64, 104, 81,
- 0, 119, 0, 234, 86, 119, 0, 0, 236, 237,
- 0, 239, 81, 0, 0, 240, 82, 238, 237, 0,
- 1, 81, 0, 0, 10, 0, 240, 0, 240, 86,
- 10, 0, 241, 0, 240, 86, 241, 0, 130, 127,
- 171, 147, 0, 130, 127, 172, 147, 0, 130, 127,
- 191, 147, 0, 134, 127, 172, 147, 0, 134, 127,
- 191, 147, 0, 0, 243, 244, 0, 237, 0, 245,
- 81, 0, 3, 0, 245, 86, 3, 0, 102, 0,
- 246, 86, 102, 0, 31, 0, 252, 0, 250, 0,
- 251, 0, 262, 0, 272, 0, 68, 0, 102, 0,
- 249, 86, 102, 0, 78, 249, 82, 0, 79, 102,
- 102, 82, 0, 0, 0, 66, 102, 264, 87, 253,
- 266, 83, 254, 279, 68, 0, 0, 66, 102, 264,
- 255, 279, 68, 0, 0, 0, 66, 102, 43, 102,
- 264, 87, 256, 266, 83, 257, 279, 68, 0, 0,
- 66, 102, 43, 102, 264, 258, 279, 68, 0, 0,
- 67, 102, 87, 259, 266, 83, 0, 67, 102, 0,
- 0, 67, 102, 43, 102, 87, 260, 266, 83, 0,
- 67, 102, 43, 102, 0, 0, 66, 102, 64, 102,
- 81, 264, 261, 279, 68, 0, 67, 102, 64, 102,
- 81, 0, 0, 76, 102, 264, 263, 279, 68, 0,
- 0, 265, 0, 50, 249, 50, 0, 266, 267, 268,
- 0, 268, 0, 74, 0, 75, 0, 73, 0, 0,
- 268, 269, 82, 0, 268, 82, 0, 136, 127, 270,
- 0, 192, 127, 270, 0, 1, 0, 0, 271, 0,
- 270, 86, 271, 0, 169, 0, 169, 43, 112, 0,
- 43, 112, 0, 0, 0, 0, 53, 273, 289, 274,
- 290, 275, 203, 0, 0, 0, 0, 54, 276, 289,
- 277, 290, 278, 203, 0, 0, 0, 280, 281, 0,
- 284, 0, 94, 0, 281, 284, 0, 0, 281, 282,
- 94, 0, 82, 0, 1, 0, 0, 0, 53, 285,
- 289, 286, 283, 0, 0, 0, 54, 287, 289, 288,
- 283, 0, 64, 190, 81, 298, 0, 298, 0, 64,
- 190, 81, 299, 296, 0, 299, 296, 0, 0, 82,
- 291, 0, 0, 292, 0, 293, 0, 198, 0, 292,
- 293, 0, 293, 198, 0, 130, 127, 294, 82, 0,
- 130, 82, 0, 134, 82, 0, 295, 0, 294, 86,
- 295, 0, 171, 147, 0, 172, 147, 0, 191, 147,
- 0, 0, 86, 10, 0, 0, 86, 297, 239, 0,
- 300, 0, 302, 0, 299, 302, 0, 3, 0, 4,
- 0, 77, 0, 301, 0, 12, 0, 13, 0, 14,
- 0, 15, 0, 16, 0, 17, 0, 18, 0, 19,
- 0, 20, 0, 21, 0, 22, 0, 23, 0, 24,
- 0, 25, 0, 26, 0, 27, 0, 11, 0, 28,
- 0, 29, 0, 6, 0, 7, 0, 300, 43, 64,
- 190, 81, 102, 0, 300, 43, 102, 0, 43, 64,
- 190, 81, 102, 0, 43, 102, 0, 300, 0, 304,
- 0, 306, 0, 304, 306, 0, 106, 0, 300, 43,
- 305, 0, 43, 305, 0, 104, 0, 72, 0, 0,
- 0, 65, 309, 307, 310, 303, 88, 0, 300, 0,
- 312, 0, 313, 0, 312, 313, 0, 300, 43, 0,
- 43, 0, 69, 64, 311, 81, 0, 76, 64, 102,
- 81, 0, 71, 64, 190, 81, 0
-};
-
-#endif
-
-#if YYDEBUG != 0
-static const short yyrline[] = { 0,
- 261, 266, 280, 282, 282, 283, 285, 287, 288, 289,
- 297, 301, 311, 315, 319, 321, 323, 324, 325, 330,
- 337, 339, 343, 347, 353, 355, 359, 363, 369, 371,
- 375, 381, 383, 384, 385, 388, 390, 392, 394, 396,
- 398, 400, 404, 408, 411, 414, 417, 421, 423, 426,
- 429, 433, 461, 467, 470, 473, 476, 478, 480, 484,
- 488, 492, 494, 497, 501, 528, 530, 532, 534, 536,
- 538, 540, 542, 544, 546, 548, 550, 552, 554, 558,
- 560, 564, 566, 569, 573, 575, 582, 585, 593, 604,
- 611, 612, 614, 620, 622, 645, 654, 656, 658, 670,
- 684, 686, 688, 690, 692, 694, 696, 701, 703, 710,
- 712, 716, 718, 719, 729, 734, 736, 737, 738, 745,
- 750, 754, 757, 765, 770, 772, 773, 774, 781, 791,
- 795, 800, 804, 808, 812, 814, 816, 825, 828, 832,
- 834, 836, 841, 845, 848, 852, 855, 857, 869, 872,
- 874, 876, 880, 884, 886, 889, 902, 905, 909, 911,
- 919, 920, 921, 925, 927, 932, 934, 936, 942, 943,
- 944, 947, 949, 952, 954, 957, 960, 966, 973, 975,
- 982, 989, 992, 999, 1002, 1006, 1009, 1013, 1018, 1021,
- 1025, 1028, 1030, 1032, 1034, 1041, 1043, 1044, 1045, 1050,
- 1052, 1054, 1056, 1061, 1065, 1068, 1070, 1075, 1077, 1078,
- 1081, 1081, 1084, 1087, 1089, 1091, 1094, 1096, 1099, 1107,
- 1121, 1129, 1133, 1147, 1155, 1162, 1164, 1169, 1172, 1177,
- 1179, 1181, 1188, 1190, 1191, 1199, 1205, 1207, 1209, 1216,
- 1218, 1224, 1230, 1232, 1234, 1236, 1243, 1245, 1248, 1251,
- 1255, 1258, 1262, 1265, 1269, 1274, 1276, 1280, 1282, 1284,
- 1286, 1290, 1292, 1294, 1297, 1299, 1302, 1306, 1308, 1311,
- 1313, 1318, 1321, 1326, 1328, 1330, 1334, 1358, 1364, 1377,
- 1382, 1387, 1389, 1394, 1396, 1400, 1404, 1408, 1418, 1420,
- 1425, 1430, 1433, 1437, 1440, 1444, 1447, 1450, 1453, 1457,
- 1460, 1464, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482,
- 1486, 1494, 1502, 1504, 1506, 1510, 1512, 1515, 1518, 1530,
- 1532, 1537, 1539, 1542, 1556, 1559, 1562, 1564, 1566, 1570,
- 1574, 1580, 1598, 1603, 1608, 1611, 1625, 1634, 1638, 1642,
- 1646, 1652, 1656, 1661, 1664, 1669, 1672, 1673, 1689, 1694,
- 1697, 1709, 1711, 1721, 1731, 1732, 1739, 1741, 1753, 1757,
- 1771, 1777, 1783, 1784, 1788, 1792, 1796, 1800, 1811, 1818,
- 1825, 1832, 1843, 1849, 1852, 1857, 1880, 1910, 1916, 1922,
- 1928, 1942, 1946, 1950, 1953, 1958, 1960, 1963, 1965, 1969,
- 1974, 1977, 1983, 1988, 1993, 1995, 2004, 2005, 2011, 2013,
- 2023, 2025, 2029, 2032, 2038, 2047, 2055, 2063, 2072, 2085,
- 2090, 2095, 2097, 2106, 2109, 2114, 2117, 2121, 2130, 2132,
- 2133, 2134, 2135, 2136, 2150, 2153, 2157, 2163, 2169, 2176,
- 2181, 2187, 2194, 2200, 2206, 2211, 2217, 2224, 2230, 2236,
- 2242, 2250, 2256, 2262, 2270, 2277, 2283, 2292, 2299, 2307,
- 2312, 2315, 2325, 2327, 2330, 2332, 2333, 2336, 2341, 2342,
- 2359, 2365, 2370, 2374, 2377, 2378, 2381, 2389, 2395, 2404,
- 2414, 2421, 2425, 2430, 2439, 2446, 2450, 2460, 2462, 2463,
- 2465, 2467, 2468, 2469, 2470, 2472, 2474, 2477, 2485, 2492,
- 2492, 2499, 2505, 2507, 2513, 2518, 2523, 2532, 2534, 2540,
- 2542, 2545, 2547, 2548, 2549, 2552, 2557, 2559, 2563, 2566,
- 2573, 2579, 2584, 2591, 2596, 2601, 2606, 2613, 2617, 2620,
- 2626, 2628, 2629, 2630, 2633, 2635, 2636, 2637, 2638, 2639,
- 2640, 2641, 2642, 2643, 2644, 2645, 2646, 2647, 2648, 2649,
- 2650, 2651, 2652, 2653, 2653, 2656, 2662, 2667, 2672, 2678,
- 2680, 2683, 2685, 2692, 2704, 2709, 2715, 2717, 2723, 2727,
- 2728, 2734, 2736, 2739, 2741, 2747, 2752, 2758, 2765, 2774
-};
-#endif
-
-
-#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)
-
-static const char * const yytname[] = { "$","error","$undefined.","IDENTIFIER",
-"TYPENAME","SCSPEC","TYPESPEC","TYPE_QUAL","CONSTANT","STRING","ELLIPSIS","SIZEOF",
-"ENUM","STRUCT","UNION","IF","ELSE","WHILE","DO","FOR","SWITCH","CASE","DEFAULT",
-"BREAK","CONTINUE","RETURN","GOTO","ASM_KEYWORD","TYPEOF","ALIGNOF","ATTRIBUTE",
-"EXTENSION","LABEL","REALPART","IMAGPART","VA_ARG","PTR_VALUE","PTR_BASE","PTR_EXTENT",
-"END_OF_LINE","ASSIGN","'='","'?'","':'","OROR","ANDAND","'|'","'^'","'&'","EQCOMPARE",
-"ARITHCOMPARE","LSHIFT","RSHIFT","'+'","'-'","'*'","'/'","'%'","UNARY","PLUSPLUS",
-"MINUSMINUS","HYPERUNARY","POINTSAT","'.'","'('","'['","INTERFACE","IMPLEMENTATION",
-"END","SELECTOR","DEFS","ENCODE","CLASSNAME","PUBLIC","PRIVATE","PROTECTED",
-"PROTOCOL","OBJECTNAME","CLASS","ALIAS","OBJC_STRING","')'","';'","'}'","'~'",
-"'!'","','","'{'","']'","program","extdefs","@1","@2","extdef","datadef","fndef",
-"@3","@4","@5","@6","@7","@8","identifier","unop","expr","exprlist","nonnull_exprlist",
-"unary_expr","sizeof","alignof","cast_expr","@9","expr_no_commas","@10","@11",
-"@12","@13","@14","primary","string","objc_string","old_style_parm_decls","lineno_datadecl",
-"datadecls","datadecl","lineno_decl","decls","setspecs","setattrs","decl","typed_declspecs",
-"reserved_declspecs","typed_declspecs_no_prefix_attr","reserved_declspecs_no_prefix_attr",
-"declmods","declmods_no_prefix_attr","typed_typespecs","reserved_typespecquals",
-"typespec","typespecqual_reserved","initdecls","notype_initdecls","maybeasm",
-"initdcl","@15","notype_initdcl","@16","maybe_attribute","attributes","attribute",
-"attribute_list","attrib","any_word","init","@17","initlist_maybe_comma","initlist1",
-"initelt","@18","initval","@19","designator_list","designator","nested_function",
-"@20","@21","notype_nested_function","@22","@23","declarator","after_type_declarator",
-"parm_declarator","notype_declarator","struct_head","union_head","enum_head",
-"structsp","@24","@25","@26","@27","maybecomma","maybecomma_warn","component_decl_list",
-"component_decl_list2","component_decl","components","component_declarator",
-"enumlist","enumerator","typename","absdcl","nonempty_type_quals","type_quals",
-"absdcl1","stmts","lineno_stmt_or_labels","xstmts","errstmt","pushlevel","maybe_label_decls",
-"label_decls","label_decl","compstmt_or_error","compstmt_start","compstmt_nostart",
-"compstmt_primary_start","compstmt","simple_if","if_prefix","do_stmt_start",
-"@28","save_filename","save_lineno","lineno_labeled_stmt","lineno_stmt_or_label",
-"stmt_or_label","stmt","@29","@30","@31","@32","@33","@34","@35","all_iter_stmt",
-"all_iter_stmt_simple","@36","label","maybe_type_qual","xexpr","asm_operands",
-"nonnull_asm_operands","asm_operand","asm_clobbers","parmlist","@37","parmlist_1",
-"@38","parmlist_2","parms","parm","parmlist_or_identifiers","@39","parmlist_or_identifiers_1",
-"identifiers","identifiers_or_typenames","extension","objcdef","identifier_list",
-"classdecl","aliasdecl","classdef","@40","@41","@42","@43","@44","@45","@46",
-"@47","@48","protocoldef","@49","protocolrefs","non_empty_protocolrefs","ivar_decl_list",
-"visibility_spec","ivar_decls","ivar_decl","ivars","ivar_declarator","methoddef",
-"@50","@51","@52","@53","@54","@55","methodprotolist","@56","methodprotolist2",
-"@57","semi_or_error","methodproto","@58","@59","@60","@61","methoddecl","optarglist",
-"myxdecls","mydecls","mydecl","myparms","myparm","optparmlist","@62","unaryselector",
-"keywordselector","selector","reservedwords","keyworddecl","messageargs","keywordarglist",
-"keywordexpr","keywordarg","receiver","objcmessageexpr","@63","@64","selectorarg",
-"keywordnamelist","keywordname","objcselectorexpr","objcprotocolexpr","objcencodeexpr", NULL
-};
-#endif
-
-static const short yyr1[] = { 0,
- 89, 89, 91, 90, 92, 90, 93, 93, 93, 93,
- 93, 94, 94, 94, 94, 94, 94, 94, 94, 96,
- 97, 95, 95, 98, 99, 95, 95, 100, 101, 95,
- 95, 102, 102, 102, 102, 103, 103, 103, 103, 103,
- 103, 103, 104, 105, 105, 106, 106, 107, 107, 107,
- 107, 107, 107, 107, 107, 107, 107, 107, 107, 108,
- 109, 110, 110, 111, 110, 112, 112, 112, 112, 112,
- 112, 112, 112, 112, 112, 112, 112, 112, 113, 112,
- 114, 112, 115, 116, 112, 117, 112, 112, 112, 118,
- 118, 118, 118, 118, 118, 118, 118, 118, 118, 118,
- 118, 118, 118, 118, 118, 118, 118, 119, 119, 120,
- 120, 121, 121, 121, 122, 123, 123, 123, 123, 124,
- 124, 124, 124, 125, 126, 126, 126, 126, 127, 128,
- 129, 129, 129, 129, 129, 129, 129, 130, 130, 131,
- 131, 131, 131, 132, 132, 133, 133, 133, 134, 134,
- 134, 134, 135, 135, 135, 135, 136, 136, 137, 137,
- 138, 138, 138, 138, 138, 138, 138, 138, 139, 139,
- 139, 140, 140, 141, 141, 142, 142, 144, 143, 143,
- 146, 145, 145, 147, 147, 148, 148, 149, 150, 150,
- 151, 151, 151, 151, 151, 152, 152, 152, 152, 153,
- 154, 153, 153, 155, 155, 156, 156, 157, 157, 158,
- 157, 157, 160, 159, 159, 159, 161, 161, 162, 164,
- 165, 163, 167, 168, 166, 169, 169, 170, 170, 170,
- 170, 170, 170, 170, 170, 171, 171, 171, 171, 171,
- 171, 172, 172, 172, 172, 172, 172, 172, 173, 173,
- 174, 174, 175, 175, 177, 176, 176, 176, 178, 176,
- 176, 176, 179, 176, 180, 176, 176, 181, 181, 182,
- 182, 183, 183, 184, 184, 184, 184, 185, 185, 185,
- 185, 185, 185, 186, 186, 187, 187, 187, 188, 188,
- 188, 189, 189, 190, 190, 191, 191, 192, 192, 193,
- 193, 194, 194, 194, 194, 194, 194, 194, 194, 194,
- 194, 195, 196, 196, 196, 197, 197, 198, 199, 200,
- 200, 201, 201, 202, 203, 203, 204, 205, 205, 205,
- 205, 206, 207, 208, 208, 209, 211, 210, 212, 213,
- 214, 214, 215, 216, 216, 217, 217, 217, 218, 217,
- 217, 217, 219, 220, 217, 217, 217, 221, 222, 223,
- 217, 224, 217, 217, 217, 217, 217, 217, 217, 217,
- 217, 217, 217, 217, 225, 227, 226, 228, 228, 228,
- 228, 229, 229, 230, 230, 231, 231, 232, 232, 233,
- 234, 234, 236, 235, 237, 238, 237, 237, 239, 239,
- 239, 239, 240, 240, 241, 241, 241, 241, 241, 243,
- 242, 244, 244, 245, 245, 246, 246, 247, 248, 248,
- 248, 248, 248, 248, 249, 249, 250, 251, 253, 254,
- 252, 255, 252, 256, 257, 252, 258, 252, 259, 252,
- 252, 260, 252, 252, 261, 252, 252, 263, 262, 264,
- 264, 265, 266, 266, 267, 267, 267, 268, 268, 268,
- 269, 269, 269, 270, 270, 270, 271, 271, 271, 273,
- 274, 275, 272, 276, 277, 278, 272, 279, 280, 279,
- 281, 281, 281, 282, 281, 283, 283, 285, 286, 284,
- 287, 288, 284, 289, 289, 289, 289, 290, 290, 291,
- 291, 292, 292, 292, 292, 293, 293, 293, 294, 294,
- 295, 295, 295, 296, 296, 297, 296, 298, 299, 299,
- 300, 300, 300, 300, 301, 301, 301, 301, 301, 301,
- 301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
- 301, 301, 301, 301, 301, 302, 302, 302, 302, 303,
- 303, 304, 304, 305, 306, 306, 307, 307, 309, 310,
- 308, 311, 311, 312, 312, 313, 313, 314, 315, 316
-};
-
-static const short yyr2[] = { 0,
- 0, 1, 0, 2, 0, 3, 1, 1, 1, 5,
- 2, 3, 4, 4, 2, 2, 2, 2, 1, 0,
- 0, 7, 4, 0, 0, 7, 4, 0, 0, 6,
- 3, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 0, 1, 1, 3, 1, 2, 2,
- 2, 2, 2, 4, 2, 4, 2, 2, 6, 1,
- 1, 1, 4, 0, 7, 1, 3, 3, 3, 3,
- 3, 3, 3, 3, 3, 3, 3, 3, 0, 4,
- 0, 4, 0, 0, 7, 0, 5, 3, 3, 1,
- 1, 1, 3, 3, 3, 3, 4, 4, 3, 3,
- 2, 2, 1, 1, 1, 1, 1, 1, 2, 1,
- 2, 0, 1, 2, 3, 1, 1, 2, 2, 4,
- 4, 2, 2, 3, 1, 1, 2, 2, 0, 0,
- 4, 4, 3, 3, 2, 2, 2, 2, 3, 0,
- 2, 2, 2, 2, 3, 0, 2, 2, 1, 1,
- 2, 2, 1, 1, 2, 2, 2, 3, 0, 2,
- 1, 1, 1, 2, 2, 1, 4, 4, 1, 1,
- 1, 1, 3, 1, 3, 0, 4, 0, 6, 3,
- 0, 6, 3, 0, 1, 1, 2, 6, 1, 3,
- 0, 1, 4, 6, 4, 1, 1, 1, 1, 1,
- 0, 4, 1, 0, 2, 1, 3, 3, 2, 0,
- 4, 1, 0, 4, 1, 1, 1, 2, 2, 0,
- 0, 5, 0, 0, 5, 1, 1, 3, 3, 4,
- 3, 3, 3, 1, 1, 3, 4, 3, 3, 3,
- 1, 3, 3, 3, 4, 3, 3, 1, 1, 2,
- 1, 2, 1, 2, 0, 7, 5, 2, 0, 7,
- 5, 2, 0, 8, 0, 7, 2, 0, 1, 0,
- 1, 1, 2, 0, 3, 2, 4, 3, 5, 3,
- 1, 1, 2, 1, 3, 4, 6, 5, 1, 3,
- 1, 1, 3, 2, 2, 0, 1, 1, 2, 0,
- 2, 3, 3, 2, 3, 4, 3, 2, 3, 2,
- 3, 1, 1, 2, 2, 0, 1, 2, 0, 0,
- 1, 1, 2, 3, 1, 2, 1, 1, 5, 4,
- 4, 2, 2, 2, 2, 4, 0, 4, 0, 0,
- 3, 4, 3, 1, 1, 1, 1, 2, 0, 4,
- 1, 3, 0, 0, 7, 5, 2, 0, 0, 0,
- 12, 0, 6, 2, 2, 2, 3, 6, 8, 10,
- 12, 3, 4, 1, 1, 0, 6, 3, 5, 2,
- 3, 0, 1, 0, 1, 0, 1, 1, 3, 4,
- 1, 3, 0, 2, 2, 0, 4, 2, 0, 1,
- 1, 3, 1, 3, 4, 4, 4, 4, 4, 0,
- 2, 1, 2, 1, 3, 1, 3, 1, 1, 1,
- 1, 1, 1, 1, 1, 3, 3, 4, 0, 0,
- 10, 0, 6, 0, 0, 12, 0, 8, 0, 6,
- 2, 0, 8, 4, 0, 9, 5, 0, 6, 0,
- 1, 3, 3, 1, 1, 1, 1, 0, 3, 2,
- 3, 3, 1, 0, 1, 3, 1, 3, 2, 0,
- 0, 0, 7, 0, 0, 0, 7, 0, 0, 2,
- 1, 1, 2, 0, 3, 1, 1, 0, 0, 5,
- 0, 0, 5, 4, 1, 5, 2, 0, 2, 0,
- 1, 1, 1, 2, 2, 4, 2, 2, 1, 3,
- 2, 2, 2, 0, 2, 0, 3, 1, 1, 2,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 6, 3, 5, 2, 1,
- 1, 1, 2, 1, 3, 2, 1, 1, 0, 0,
- 6, 1, 1, 1, 2, 2, 1, 4, 4, 4
-};
-
-static const short yydefact[] = { 3,
- 5, 0, 0, 0, 163, 154, 161, 153, 253, 249,
- 251, 0, 0, 0, 418, 0, 470, 474, 0, 0,
- 424, 450, 0, 450, 0, 0, 19, 4, 8, 7,
- 0, 129, 129, 149, 140, 150, 186, 0, 0, 0,
- 162, 0, 9, 420, 421, 419, 422, 166, 423, 6,
- 17, 18, 254, 250, 252, 0, 0, 0, 32, 33,
- 35, 34, 425, 0, 0, 0, 450, 441, 164, 451,
- 450, 165, 0, 0, 248, 300, 0, 0, 174, 130,
- 0, 16, 0, 15, 0, 151, 140, 152, 156, 155,
- 138, 187, 274, 258, 274, 262, 265, 267, 11, 90,
- 91, 108, 60, 61, 0, 0, 0, 0, 36, 38,
- 37, 0, 39, 40, 0, 559, 0, 0, 0, 110,
- 41, 42, 0, 0, 43, 62, 0, 0, 66, 46,
- 48, 92, 107, 0, 0, 103, 104, 105, 106, 298,
- 0, 296, 159, 0, 296, 191, 452, 0, 521, 522,
- 544, 545, 541, 525, 526, 527, 528, 529, 530, 531,
- 532, 533, 534, 535, 536, 537, 538, 539, 540, 542,
- 543, 0, 0, 523, 471, 495, 514, 518, 524, 519,
- 475, 0, 0, 432, 0, 0, 439, 448, 427, 0,
- 0, 0, 12, 0, 0, 31, 0, 410, 0, 0,
- 184, 234, 300, 0, 235, 0, 172, 130, 0, 226,
- 227, 0, 0, 139, 142, 169, 170, 141, 143, 171,
- 0, 0, 0, 255, 0, 259, 0, 263, 57, 58,
- 0, 52, 49, 0, 332, 0, 0, 0, 0, 0,
- 0, 51, 0, 0, 0, 53, 0, 55, 0, 0,
- 83, 81, 79, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 101, 102, 0, 0, 44,
- 0, 109, 111, 0, 328, 320, 0, 50, 167, 300,
- 393, 0, 130, 294, 297, 157, 168, 299, 159, 295,
- 197, 198, 199, 196, 0, 189, 192, 426, 0, 549,
- 0, 498, 516, 497, 0, 520, 0, 498, 450, 0,
- 429, 479, 444, 0, 458, 479, 428, 301, 244, 243,
- 175, 176, 247, 0, 242, 0, 246, 0, 0, 29,
- 0, 339, 117, 340, 183, 185, 0, 0, 14, 0,
- 0, 23, 0, 184, 410, 0, 13, 27, 0, 0,
- 184, 282, 276, 129, 273, 129, 0, 274, 184, 274,
- 291, 292, 270, 289, 0, 0, 94, 93, 0, 558,
- 557, 560, 567, 562, 0, 563, 564, 0, 0, 10,
- 47, 0, 0, 89, 88, 0, 0, 0, 0, 77,
- 78, 76, 75, 74, 72, 73, 67, 68, 69, 70,
- 71, 100, 99, 0, 45, 0, 96, 0, 0, 321,
- 322, 95, 304, 0, 308, 0, 310, 0, 0, 393,
- 0, 160, 158, 0, 191, 44, 0, 0, 0, 472,
- 515, 399, 0, 547, 476, 437, 450, 458, 0, 0,
- 442, 447, 0, 0, 0, 0, 0, 414, 400, 129,
- 129, 412, 0, 401, 403, 411, 0, 245, 318, 0,
- 119, 114, 118, 0, 181, 232, 228, 173, 233, 21,
- 180, 229, 231, 0, 25, 0, 257, 339, 275, 339,
- 283, 0, 261, 0, 0, 271, 0, 270, 0, 64,
- 63, 0, 566, 568, 0, 565, 570, 569, 54, 56,
- 0, 0, 82, 80, 97, 98, 416, 0, 0, 0,
- 339, 0, 0, 126, 340, 313, 323, 303, 302, 394,
- 309, 311, 305, 307, 0, 188, 190, 90, 0, 0,
- 494, 514, 129, 0, 503, 499, 501, 0, 0, 517,
- 401, 0, 0, 434, 479, 445, 0, 433, 488, 491,
- 482, 0, 129, 129, 484, 481, 458, 457, 455, 456,
- 440, 458, 463, 460, 129, 129, 0, 449, 177, 398,
- 296, 296, 395, 396, 0, 413, 0, 0, 327, 30,
- 319, 325, 115, 129, 129, 146, 0, 0, 178, 230,
- 0, 277, 278, 284, 340, 280, 340, 184, 184, 293,
- 290, 184, 0, 0, 0, 0, 550, 0, 551, 552,
- 84, 87, 324, 0, 330, 128, 127, 317, 0, 331,
- 315, 340, 314, 0, 306, 193, 0, 195, 548, 496,
- 507, 296, 508, 504, 505, 473, 0, 477, 458, 0,
- 479, 430, 0, 0, 176, 0, 0, 0, 483, 0,
- 0, 464, 464, 459, 241, 300, 393, 130, 184, 184,
- 184, 300, 130, 184, 184, 0, 402, 404, 415, 326,
- 333, 122, 0, 123, 0, 146, 144, 203, 201, 200,
- 182, 22, 0, 26, 339, 184, 0, 256, 260, 266,
- 184, 59, 216, 90, 0, 213, 0, 215, 0, 268,
- 206, 212, 0, 0, 554, 556, 0, 561, 0, 553,
- 0, 417, 329, 0, 163, 0, 353, 337, 0, 0,
- 0, 0, 0, 0, 0, 0, 382, 450, 450, 374,
- 0, 0, 124, 129, 129, 346, 351, 0, 0, 343,
- 344, 347, 375, 345, 0, 0, 184, 184, 184, 0,
- 509, 546, 0, 438, 0, 479, 489, 492, 485, 443,
- 0, 467, 461, 465, 462, 304, 0, 410, 0, 405,
- 406, 407, 304, 0, 408, 409, 397, 0, 0, 145,
- 148, 147, 0, 179, 285, 0, 279, 130, 184, 264,
- 219, 0, 210, 65, 0, 205, 0, 218, 209, 555,
- 85, 0, 0, 339, 384, 0, 0, 380, 364, 365,
- 366, 0, 0, 0, 383, 0, 184, 348, 135, 0,
- 136, 0, 0, 335, 340, 334, 357, 0, 137, 194,
- 511, 512, 513, 506, 296, 435, 446, 0, 0, 0,
- 469, 0, 0, 239, 240, 236, 238, 0, 120, 121,
- 0, 184, 0, 286, 0, 0, 207, 208, 0, 0,
- 0, 385, 48, 0, 0, 0, 378, 367, 0, 372,
- 0, 381, 0, 133, 220, 0, 134, 223, 352, 339,
- 0, 0, 510, 479, 431, 487, 486, 490, 493, 468,
- 466, 237, 202, 288, 184, 214, 211, 336, 0, 338,
- 376, 358, 362, 0, 373, 0, 131, 0, 132, 0,
- 350, 341, 339, 0, 0, 287, 354, 339, 384, 339,
- 379, 386, 0, 221, 224, 342, 356, 436, 339, 377,
- 0, 363, 0, 0, 387, 388, 368, 0, 0, 355,
- 359, 0, 386, 0, 0, 222, 225, 384, 0, 0,
- 369, 389, 0, 390, 0, 0, 360, 391, 0, 370,
- 339, 0, 0, 361, 371, 392, 0, 0, 0
-};
-
-static const short yydefgoto[] = { 967,
- 1, 2, 3, 28, 29, 30, 343, 588, 349, 591,
- 200, 460, 697, 123, 236, 404, 125, 126, 127, 128,
- 129, 605, 130, 389, 388, 386, 711, 387, 131, 132,
- 133, 330, 331, 332, 583, 510, 511, 31, 341, 733,
- 450, 91, 584, 677, 451, 34, 142, 286, 35, 218,
- 206, 78, 201, 207, 683, 79, 587, 335, 336, 37,
- 295, 296, 297, 681, 783, 699, 700, 701, 856, 702,
- 792, 703, 704, 874, 908, 938, 877, 910, 939, 322,
- 210, 747, 211, 38, 39, 40, 41, 358, 360, 365,
- 227, 796, 487, 222, 223, 355, 593, 594, 363, 364,
- 144, 749, 145, 191, 285, 512, 513, 619, 333, 276,
- 409, 410, 411, 580, 581, 277, 134, 582, 737, 738,
- 739, 804, 825, 464, 826, 516, 740, 741, 880, 803,
- 929, 919, 948, 961, 920, 742, 743, 918, 744, 816,
- 864, 934, 935, 936, 959, 415, 416, 452, 666, 453,
- 454, 455, 325, 326, 456, 457, 508, 135, 43, 64,
- 44, 45, 46, 438, 756, 312, 639, 884, 545, 315,
- 557, 641, 47, 316, 69, 48, 443, 562, 444, 567,
- 763, 764, 49, 65, 302, 539, 66, 308, 543, 439,
- 440, 555, 648, 888, 556, 643, 839, 644, 840, 175,
- 430, 536, 537, 538, 750, 751, 304, 432, 176, 177,
- 178, 179, 180, 608, 609, 706, 610, 372, 136, 238,
- 492, 375, 376, 377, 137, 138, 139
-};
-
-static const short yypact[] = { 102,
- 124, 3399, 3399, 214,-32768,-32768,-32768,-32768, 70, 70,
- 70, 114, 145, 206,-32768, 152,-32768,-32768, 152, 152,
--32768, 94, 152, 94, 152, 152,-32768,-32768,-32768,-32768,
- 189, 197, 1269, 271,-32768, 70,-32768, 135, 230, 306,
--32768, 3399,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768, 70, 70, 70, 3083, 2906, 223,-32768,-32768,
--32768,-32768,-32768, 61, 3667, 3667, 131, 50,-32768,-32768,
- 94,-32768, 252, 152,-32768,-32768, 189, 293,-32768, 70,
- 2040,-32768, 479,-32768, 189, 271,-32768, 70,-32768,-32768,
- 910,-32768, 224, 219, 224, 229,-32768, 242,-32768,-32768,
--32768,-32768,-32768,-32768, 3083, 3083, 313, 152,-32768,-32768,
--32768, 3083,-32768,-32768, 1620,-32768, 322, 332, 346,-32768,
--32768,-32768, 3083, 254, 330,-32768, 3142, 3201,-32768, 3961,
- 523, 335, 347, 985, 3083,-32768,-32768,-32768,-32768,-32768,
- 349, 434,-32768, 360, 3794, 343,-32768, 152,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768, 368, 3874,-32768,-32768,-32768, 2795, 415,-32768,-32768,
--32768, 152, 152, 362, 152, 152,-32768,-32768,-32768, 386,
- 503, 292,-32768, 479, 189,-32768, 402,-32768, 2224, 255,
- 70,-32768,-32768, 479,-32768, 337,-32768, 70, 2143, 406,
- 475, 418, 2059, 910,-32768,-32768,-32768,-32768, 70,-32768,
- 416, 408, 1966,-32768, 420,-32768, 119,-32768,-32768,-32768,
- 3083,-32768,-32768, 424,-32768, 451, 472, 2965, 3700, 3874,
- 152,-32768, 477, 3083, 1620,-32768, 1620,-32768, 3083, 3083,
- 514,-32768,-32768, 3083, 3083, 3083, 3083, 3083, 3083, 3083,
- 3083, 3083, 3083, 3083, 3083,-32768,-32768, 152, 152, 3083,
- 3083,-32768,-32768, 483,-32768, 539, 496,-32768,-32768,-32768,
- 434, 2288, 70,-32768, 486, 666,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768, 222,-32768, 525,-32768, 3874,-32768,
- 513, 519, 593,-32768, 415,-32768, 443, 519, 94, 527,
--32768, 543, 537, 544,-32768, 543,-32768,-32768, 475,-32768,
--32768, 600, 475, 626,-32768, 103,-32768, 573, 603,-32768,
- 793, 80,-32768,-32768, 646, 70, 384, 325,-32768, 479,
- 479,-32768, 255, 70,-32768, 2352,-32768,-32768, 255, 617,
- 70,-32768,-32768,-32768, 611, 354, 3600, 224, 70, 224,
--32768, 662, 620,-32768, 119, 1283,-32768,-32768, 2710,-32768,
--32768,-32768,-32768, 664, 630, 3700,-32768, 633, 654,-32768,
- 3961, 655, 657, 3961, 3961, 3083, 665, 3083, 3083, 1588,
- 1391, 672, 1068, 1257, 688, 688, 627, 627,-32768,-32768,
--32768,-32768,-32768, 667, 330, 663,-32768, 152, 1185, 539,
--32768,-32768, 388, 448,-32768, 3553,-32768, 670, 434,-32768,
- 2416,-32768, 666, 671, 343, 3260, 673, 3735, 2162,-32768,
--32768, 3371, 3874,-32768,-32768, 668, 94,-32768, 685, 3479,
--32768,-32768, 487, 3342, 691, 79, 680,-32768,-32768,-32768,
- 3824,-32768, 682, 436,-32768,-32768, 273,-32768,-32768, 77,
--32768,-32768,-32768, 3863,-32768, 406,-32768,-32768, 406,-32768,
- 723,-32768,-32768, 677,-32768, 686,-32768,-32768,-32768,-32768,
--32768, 683,-32768, 690, 3083, 152, 694, 620, 3874,-32768,
--32768, 3768,-32768,-32768, 664,-32768,-32768,-32768,-32768,-32768,
- 735, 3083, 1125, 1238,-32768,-32768,-32768, 437, 509, 1082,
- 697, 699, 1341,-32768,-32768,-32768,-32768, 486,-32768,-32768,
--32768, 486,-32768,-32768, 696,-32768,-32768, 283, 705, 152,
--32768, 2795, 706, 2174,-32768,-32768, 3824, 2193, 77,-32768,
- 701, 709, 77,-32768, 543,-32768, 555,-32768,-32768,-32768,
--32768, 189, 197, 1269, 258,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768,-32768, 3891, 710,-32768,-32768,-32768,
- 227, 298,-32768,-32768, 3813,-32768, 790, 708,-32768,-32768,
- 713,-32768,-32768, 730, 3583,-32768, 873, 77,-32768,-32768,
- 77,-32768, 733,-32768,-32768, 733,-32768, 70, 70, 3961,
--32768, 70, 737, 741, 1705, 3083, 773, 740, 3768,-32768,
--32768, 1673,-32768, 152,-32768,-32768,-32768,-32768, 746,-32768,
--32768,-32768,-32768, 2566,-32768,-32768, 3083,-32768,-32768,-32768,
--32768, 227,-32768,-32768,-32768,-32768, 152,-32768,-32768, 755,
- 543,-32768, 3667, 3667, 98, 479, 189, 3498,-32768, 577,
- 3359, 447, 447,-32768,-32768,-32768, 298, 70, 259, 370,
- 70,-32768, 70, 370, 70, 3553,-32768,-32768,-32768,-32768,
--32768,-32768, 479,-32768, 189,-32768, 1143,-32768,-32768, 3961,
--32768,-32768, 873,-32768,-32768, 471, 471,-32768,-32768,-32768,
- 70,-32768,-32768, 788, 152,-32768, 791, 3961, 752, 750,
--32768,-32768, 87, 1875, 330,-32768, 3083,-32768, 773,-32768,
- 3083,-32768,-32768, 2651, 795, 775,-32768,-32768, 777, 778,
- 3083, 801, 765, 780, 3024, 243, 861, 76, 200,-32768,
- 826, 789,-32768, 796, 3572,-32768, 856, 1450, 95,-32768,
--32768,-32768,-32768,-32768, 2823, 336, 259, 370, 70, 490,
--32768,-32768, 581,-32768, 805, 543,-32768,-32768,-32768,-32768,
- 3083, 832, 797,-32768, 797, 602, 227,-32768, 2480,-32768,
--32768,-32768, 640, 298,-32768,-32768,-32768, 536, 554, 1143,
--32768,-32768, 1705,-32768,-32768, 3083,-32768, 122, 75,-32768,
--32768, 1705,-32768,-32768, 1790,-32768, 1955,-32768,-32768,-32768,
- 1673, 3083, 813,-32768, 3083, 3083, 921,-32768,-32768,-32768,
--32768, 803, 3083, 806,-32768, 825, 70,-32768,-32768, 479,
--32768, 189, 1535,-32768,-32768,-32768,-32768, 3083,-32768,-32768,
--32768,-32768,-32768,-32768, 227,-32768,-32768, 822, 83, 83,
- 3961, 3083, 447, 610, 610,-32768,-32768, 807,-32768,-32768,
- 808, 3925, 3083,-32768, 810, 1955,-32768,-32768, 816, 3083,
- 877,-32768, 482, 817, 819, 3083,-32768,-32768, 821,-32768,
- 3083,-32768, 560,-32768, 236, 562,-32768, 744,-32768,-32768,
- 2651, 820,-32768, 543,-32768,-32768,-32768,-32768,-32768, 3961,
--32768,-32768,-32768,-32768, 3925,-32768,-32768,-32768, 824,-32768,
--32768,-32768,-32768, 3943,-32768, 160,-32768, 255,-32768, 255,
--32768,-32768,-32768, 827, 830,-32768,-32768,-32768, 3083,-32768,
--32768, 901, 829,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
- 831,-32768, 848, 168, 828,-32768,-32768, 708, 708,-32768,
--32768, 3083, 901, 837, 901,-32768,-32768, 3083, 839, 171,
--32768,-32768, 849,-32768, 626, 847,-32768, 335, 373,-32768,
--32768, 852, 626,-32768,-32768, 335, 935, 939,-32768
-};
-
-static const short yypgoto[] = {-32768,
--32768,-32768,-32768, 100, -375,-32768,-32768,-32768,-32768,-32768,
--32768,-32768, -14,-32768, -56, 515, -226, 280,-32768,-32768,
- -74,-32768, 596,-32768,-32768,-32768,-32768,-32768, 140, -310,
--32768, -313, 614,-32768,-32768, 439,-32768, 248, -46, 202,
- 15, 864,-32768, 272, 38, -26, -172, 698, 492, -244,
- -602, -82, -181, -120,-32768,-32768,-32768, -262, 44, -32,
--32768, 529,-32768, 269,-32768, -638,-32768, 164,-32768, -631,
--32768,-32768, 276,-32768,-32768,-32768,-32768,-32768,-32768, -73,
- -109, -502, 2,-32768,-32768,-32768, -78,-32768,-32768,-32768,
--32768,-32768, 467, -27,-32768, 623, 521, 310, 656, 538,
- -24, -75, -159, -168, -236, 511,-32768,-32768, -239,-32768,
--32768,-32768, 613, -22,-32768, 444,-32768, -526,-32768,-32768,
--32768,-32768, -192, -449, -719, 516,-32768, 146,-32768,-32768,
--32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, 147,-32768,
- -818, 88,-32768, 89,-32768, 612,-32768, -353,-32768, 604,
- 605, 466, -306,-32768,-32768,-32768,-32768, 17,-32768, 1017,
--32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
--32768,-32768,-32768,-32768, -9, 5, -355,-32768, 481,-32768,
- 394, 205,-32768,-32768,-32768,-32768,-32768,-32768,-32768, -300,
--32768,-32768,-32768, 211, 497,-32768,-32768,-32768,-32768, -23,
- 745,-32768,-32768, 518,-32768, 225, 531,-32768, 631, 636,
- -140,-32768, -127,-32768,-32768, 359, 462,-32768,-32768,-32768,
--32768,-32768,-32768, 700,-32768,-32768,-32768
-};
-
-
-#define YYLAST 4018
-
-
-static const short yytable[] = { 124,
- 141, 63, 212, 92, 67, 68, 86, 334, 71, 209,
- 63, 74, 220, 446, 72, 445, 32, 32, 42, 42,
- 92, 92, 92, 94, 96, 98, 70, 344, 70, 470,
- 229, 230, 81, 195, 337, 475, 305, 233, 472, 33,
- 33, 422, 181, 405, 414, 36, 36, 92, 242, 306,
- 354, 670, 53, 54, 55, 92, 32, 184, 42, 190,
- 278, 188, 520, 356, 551, 624, 284, 225, 659, 290,
- 778, 70, 799, 321, 80, 70, 88, 578, 192, 33,
- -113, 471, 547, 886, 861, 36, 213, 272, 477, 462,
- 237, 461, 185, 232, 338, 827, 483, 736, 374, 14,
- 931, -1, 50, 447, 14, 448, 5, 6, 7, 8,
- 147, 413, 449, 186, 9, 10, 11, 853, -35, 361,
- 80, 59, 60, -2, 197, 16, 208, 797, 80, 953,
- 13, 294, 14, 298, 219, 220, 187, 59, 60, 334,
- 344, 99, 328, 16, 851, 686, 148, 687, 301, 695,
- 334, 14, 16, 855, 59, 60, 334, 300, 828, 569,
- 911, 198, 199, 579, 887, 858, -113, 309, 310, 514,
- 313, 314, 714, 182, 22, 92, 518, 56, 422, 24,
- 16, 371, 522, -399, 354, 283, 92, 736, 283, 535,
- 61, 75, 319, 926, 183, 62, 323, 356, 930, 405,
- 932, 650, 922, -185, -185, 192, 61, 220, 57, 940,
- 943, 62, 362, 955, 406, 378, 515, 873, 14, 468,
- 382, 93, 383, 61, 897, 418, 379, 466, 62, 75,
- 655, 469, 59, 60, 80, 495, 419, 208, 80, 357,
- 923, 964, -34, 76, 640, 59, 60, 208, 944, 16,
- 92, 956, 77, 402, 403, 329, 14, 219, -339, -339,
- -339, -339, 197, 844, 845, -176, -339, -339, -339, 58,
- 616, 565, 759, 621, 427, 89, -176, 90, 82, 83,
- 85, 656, -339, 753, 566, 595, 146, 597, 14, 474,
- 657, 282, 434, 221, 491, 51, 52, 813, 635, 436,
- 75, 61, 424, 92, -339, 224, 62, 425, 59, 60,
- 549, 550, 777, 70, 61, 226, 95, -176, 515, 62,
- 622, -176, 768, 769, 283, -480, -339, 14, 228, 501,
- 482, -339, 484, 189, 243, 688, 689, 148, 319, 690,
- 755, -112, 323, 272, 220, 59, 60, 291, 292, 293,
- 362, 607, 662, 576, 736, 198, 199, 5, 577, 7,
- 288, 657, 282, 626, 525, 9, 10, 11, 627, 36,
- 59, 60, 320, 357, 193, 881, 231, 61, 194, 705,
- 208, 13, 62, 208, 208, 239, 75, 202, 345, 346,
- 318, 305, 97, 507, 318, 240, 770, 771, 772, 14,
- 746, 775, 776, 16, 306, 467, 246, 248, 542, 241,
- 294, 946, 947, 14, 61, 244, 830, 14, 339, 62,
- 414, 244, 340, 787, 86, 22, 273, 546, 790, 279,
- 24, 299, 782, 198, 199, -281, -281, 585, 203, 61,
- 287, 70, 280, 533, 62, 59, 60, 204, 311, 75,
- 202, 281, 282, 962, 553, 838, 283, 307, 963, 36,
- 205, 846, 283, 14, 604, 324, 534, 317, 709, 345,
- 346, 362, 36, 75, 202, 36, 14, 554, 565, 350,
- 705, 75, 202, 36, 831, 832, 833, 766, 280, 761,
- 351, 566, 597, 773, 88, 661, 665, 281, 282, 347,
- 14, 203, 359, 194, 367, 75, 433, 86, 14, 318,
- 204, 420, 421, 786, 61, 629, 636, 574, 613, 62,
- 638, 575, 614, 205, 87, 203, 854, 86, 519, 518,
- 522, 368, 14, 203, 204, 782, 518, 522, 198, 199,
- 266, 267, 204, 268, 269, 270, 271, 205, 143, 420,
- 421, 533, 369, 645, 872, 205, -86, 76, 380, 558,
- 559, 560, 901, 407, 212, 682, 77, 732, 684, 561,
- 408, 834, 660, 664, 534, 835, 412, 88, 762, 762,
- 36, 266, 267, 915, 268, 269, 270, 271, 426, 894,
- 459, 615, 779, 428, 924, 80, 925, 88, 220, 712,
- 429, 478, 431, 480, 75, 655, 143, 437, 318, 731,
- -478, 767, 789, 789, 658, 663, 774, 849, 36, 757,
- 758, 340, 752, 441, 442, 92, 197, 558, 559, 560,
- 92, 14, 916, 748, 102, 850, 289, 642, 734, 194,
- 745, 907, 75, 909, 958, 340, 318, 194, 645, 558,
- 559, 560, 966, 558, 559, 560, 656, 732, 192, 760,
- 458, 735, 553, 836, 143, 657, 282, 36, 812, 14,
- 278, 216, 217, 768, 769, 658, 645, 9, 10, 11,
- 791, 263, 264, 265, 459, 554, 465, 552, 476, 208,
- 80, 36, 479, 344, 662, 208, 208, 571, 572, 731,
- 663, 220, 485, 657, 282, 486, 493, 502, 86, 36,
- 494, 814, 848, 497, 143, 334, 208, 334, 80, 72,
- 257, 258, 259, 260, 261, 262, 263, 264, 265, 788,
- 208, 143, 70, 70, 498, 499, 143, 500, 143, 876,
- 261, 262, 263, 264, 265, 859, 875, 505, 862, 865,
- 506, 526, 548, 530, 544, 92, 869, 521, 568, 734,
- 570, 745, 573, 589, 590, 598, 592, 319, 323, 762,
- 197, 882, 599, -176, 319, 323, 602, 611, 88, -316,
- 632, 620, 735, 625, -176, 628, 575, 631, 36, 637,
- 143, 654, 669, 329, 579, 275, -116, -116, -116, -116,
- 646, 647, -116, 899, -116, -116, -116, 198, 199, 658,
- 658, 672, 652, 653, 906, 707, 663, 663, 685, 691,
- -116, 692, 754, 878, 732, -176, 366, 708, 713, -176,
- -32, 673, 675, 793, 794, 795, 748, -33, 802, 381,
- 805, 806, -116, 808, 384, 385, 809, 289, 143, 390,
- 391, 392, 393, 394, 395, 396, 397, 398, 399, 400,
- 401, 810, 862, 208, -116, 80, 731, 815, 817, -116,
- 818, 823, 837, 678, 842, 100, 860, 819, 658, -116,
- 101, 102, 843, 103, 868, 949, 208, 870, 871, 885,
- 893, 862, 896, 900, 892, 552, 898, 928, 902, 903,
- 914, 104, 905, 15, 917, 105, 106, 107, 927, 933,
- 937, 942, 941, 945, 215, 216, 217, 108, 951, 954,
- 109, 9, 10, 11, 143, 110, 111, 112, 960, 957,
- 866, 113, 114, 965, 968, 143, 115, 116, 969, 14,
- 529, 117, 87, 118, 863, 463, 829, 780, 119, 617,
- 214, 784, 120, 527, 603, 586, 121, 122, 857, 679,
- 249, 250, 251, 867, 252, 253, 254, 255, 256, 257,
- 258, 259, 260, 261, 262, 263, 264, 265, 798, 481,
- 143, 820, 822, 503, 504, 274, 423, -319, -319, -319,
- -319, -319, -319, -319, 785, -319, -319, -319, -319, -319,
- 596, -319, -319, -319, -319, -319, -319, -319, -319, -319,
- -319, -319, -319, -319, -319, -319, -319, -319, -319, -319,
- 488, 618, 517, 601, 671, 87, 912, 913, 623, -319,
- 950, 523, -319, 952, -319, 540, 541, -319, -319, -319,
- 668, 73, 651, -319, -319, 87, 765, 891, -319, -319,
- 889, 649, 435, -319, 634, -319, -319, 289, 531, 883,
- -319, -319, 630, 532, -319, 800, -319, 275, -319, -319,
- 710, -319, 0, 0, 0, 496, 676, 0, 0, 0,
- 600, 0, 329, 0, -125, -125, -125, -125, -125, -125,
- -125, 0, -125, -125, -125, -125, -125, 612, -125, -125,
- -125, -125, -125, -125, -125, -125, -125, -125, -125, -125,
- -125, -125, -125, 0, -125, -125, -125, 258, 259, 260,
- 261, 262, 263, 264, 265, 0, -125, 0, 0, -125,
- 0, -125, 0, 0, -125, -125, -125, 0, 0, 0,
- -125, -125, 143, 0, 0, -125, -125, 781, 216, 217,
- -125, 0, -125, -125, 9, 10, 11, -125, -125, 0,
- 0, -125, 0, -125, -125, -125, -125, 0, -125, 253,
- 254, 255, 256, 257, 258, 259, 260, 261, 262, 263,
- 264, 265, 680, 0, 0, 509, 0, -339, -339, -339,
- -339, -339, -339, -339, 0, -339, -339, -339, -339, -339,
- 698, -339, -339, -339, -339, -339, -339, -339, -339, -339,
- -339, -339, -339, -339, -339, -339, 0, -339, -339, -339,
- 0, 0, 0, 0, 0, 0, 87, 0, 0, -339,
- 0, 0, -339, 0, -339, 0, 0, -339, -339, -339,
- 0, 0, 0, -339, -339, 0, 0, 0, -339, -339,
- 0, 0, 0, -339, 0, -339, -339, 0, 0, 0,
- -339, -339, 0, 0, -339, 0, -339, 0, -339, -339,
- 0, -339, 5, 6, 7, 8, 0, 0, 680, 0,
- 9, 10, 11, 254, 255, 256, 257, 258, 259, 260,
- 261, 262, 263, 264, 265, 0, 13, 0, 14, 698,
- 0, 0, 0, 0, 0, 0, 801, 259, 260, 261,
- 262, 263, 264, 265, 0, 0, 807, 0, 16, 0,
- 0, 0, 249, 250, 251, 0, 252, 253, 254, 255,
- 256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
- 22, 329, 0, -339, -339, 24, 0, 0, -339, -339,
- 84, -339, 0, 0, 0, -339, 841, -339, -339, -339,
- -339, -339, -339, -339, -339, -339, -339, -339, 489, -339,
- 0, -339, 0, -339, -339, -339, 0, 0, 698, 0,
- 0, 852, 0, 0, 0, -339, 0, 698, -339, 0,
- 698, 0, 698, -339, -339, -339, 0, 0, 0, -339,
- -339, 0, 0, 0, -339, -339, 0, 0, 0, -339,
- 0, -339, -339, 0, 0, 0, -339, -339, 0, 0,
- -339, 0, -339, -312, -339, -339, 0, -339, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 890, 256, 257,
- 258, 259, 260, 261, 262, 263, 264, 265, 895, 0,
- 824, 698, -339, -339, 0, 0, 0, -339, -339, 0,
- -339, 904, 0, 0, -339, 0, -339, -339, -339, -339,
- -339, -339, -339, -339, -339, -339, -339, 0, -339, 0,
- -339, 0, -339, -339, -339, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, -339, 0, 0, -339, 0, 0,
- 0, 0, -339, -339, -339, 0, 0, 0, -339, -339,
- 0, 0, 0, -339, -339, 0, 0, 0, -339, 0,
- -339, -339, 0, 0, 0, -339, -339, 0, 0, -339,
- 0, -339, 0, -339, -339, 879, -339, -349, -349, 0,
- 0, 0, -349, -349, 0, -349, 0, 0, 0, -349,
- 0, -349, -349, -349, -349, -349, -349, -349, -349, -349,
- -349, -349, 0, -349, 0, -349, 0, -349, -349, -349,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, -349,
- 0, 0, -349, 0, 0, 0, 0, -349, -349, -349,
- 0, 0, 0, -349, -349, 0, 0, 0, -349, -349,
- 0, 0, 0, -349, 0, -349, -349, 0, 0, 0,
- -349, -349, 0, 0, -349, 0, -349, 0, -349, -349,
- 234, -349, 100, 5, 0, 7, 140, 101, 102, 0,
- 103, 9, 10, 11, 255, 256, 257, 258, 259, 260,
- 261, 262, 263, 264, 265, 0, 0, 13, 104, 0,
- 15, 0, 105, 106, 107, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 108, 0, 0, 109, 0, 16,
- 0, 0, 110, 111, 112, 0, 0, 0, 113, 114,
- 0, 0, 0, 115, 116, 0, 0, 0, 117, 0,
- 118, 22, 0, 0, 0, 119, 24, 0, 0, 120,
- 0, 0, 0, 121, 122, 693, 235, 694, 60, 0,
- 0, 0, 101, 102, 251, 103, 252, 253, 254, 255,
- 256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
- 0, 0, 0, 104, 0, 15, 0, 105, 106, 107,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 108,
- 0, 0, 109, 0, 0, 0, 0, 110, 111, 112,
- 0, 0, 0, 113, 114, 0, 0, 695, 115, 116,
- 0, 0, 0, 117, 0, 118, 61, 0, 0, 0,
- 119, 62, 0, 0, 120, 0, 0, -204, 121, 122,
- 693, 696, 694, 60, 0, 0, 0, 101, 102, 0,
- 103, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 104, 0,
- 15, 0, 105, 106, 107, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 108, 0, 0, 109, 0, 0,
- 0, 0, 110, 111, 112, 0, 0, 0, 113, 114,
- 0, 0, 695, 115, 116, 0, 0, 0, 117, 0,
- 118, 61, 0, 0, 0, 119, 62, 0, 0, 120,
- 0, 0, -269, 121, 122, 693, 696, 100, 0, 0,
- 0, 0, 101, 102, 0, 103, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 104, 0, 15, 0, 105, 106, 107,
- 0, 0, 0, 0, 0, -217, 0, 0, 0, 108,
- 0, 0, 109, 0, 0, 0, 0, 110, 111, 112,
- 0, 0, 0, 113, 114, 0, 0, -217, 115, 116,
- 0, 0, 0, 117, 0, 118, 0, 0, 0, 0,
- 119, 0, 0, 0, 120, 693, 0, 100, 121, 122,
- 0, 696, 101, 102, 0, 103, 352, 0, 0, 5,
- 0, 7, 140, 0, 0, 0, 0, 9, 10, 11,
- 0, 0, 0, 104, 0, 15, 0, 105, 106, 107,
- 0, 0, 0, 13, 0, 0, 15, 0, 0, 108,
- 0, 0, 109, 0, 0, 0, 0, 110, 111, 112,
- 0, 0, 0, 113, 114, 16, 0, 0, 115, 116,
- 0, 0, 0, 117, 0, 118, 0, 0, 0, 0,
- 119, 0, 0, 0, 120, 0, 0, 22, 121, 122,
- 196, 696, 24, -28, -28, -28, -28, 353, -272, 0,
- 0, -28, -28, -28, 0, 0, 0, 0, 0, 348,
- 0, 0, -24, -24, -24, -24, 197, -28, 0, -176,
- -24, -24, -24, 0, 0, 0, 0, 0, 0, 0,
- -176, 0, 0, 0, 0, 197, -24, 0, -176, -28,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, -176,
- 0, 0, 0, 198, 199, 0, 0, 0, -24, 0,
- 0, -28, 0, 0, 0, 0, -28, 0, 0, 0,
- 0, -176, 198, 199, 0, -176, -28, 0, 0, 0,
- -24, 0, 0, 0, 0, -24, 0, 0, 0, 0,
- -176, 0, 0, 342, -176, -24, -20, -20, -20, -20,
- 0, 0, 0, 0, -20, -20, -20, 0, 0, 0,
- 0, 0, 329, 0, 0, 5, 6, 7, 8, 197,
- -20, 0, -176, 9, 10, 11, 0, 5, 6, 7,
- 8, 0, 0, -176, 0, 9, 10, 11, 0, 13,
- 0, 14, -20, 329, 0, 0, -502, -502, -502, -502,
- 0, 13, 0, 14, -502, -502, -502, 0, 0, 0,
- 0, 16, 0, 0, -20, 0, 0, 0, 0, -20,
- -502, 0, -502, 16, -176, 0, 100, 0, -176, -20,
- 0, 101, 102, 22, 103, 0, 0, 0, 24, 0,
- 0, 0, -502, 0, 0, 22, 0, 0, -500, 0,
- 24, 0, 104, 0, 15, 633, 105, 106, 107, 0,
- 0, 0, 0, 0, -502, 0, 0, 0, 108, -502,
- 0, 109, 0, 0, 0, 0, 110, 111, 112, -502,
- 0, 0, 113, 114, 0, 0, 0, 115, 116, 0,
- 100, 0, 117, 0, 118, 101, 102, 0, 103, 119,
- 0, 0, 0, 120, 0, 0, 0, 121, 122, 0,
- 0, 327, 0, 0, 0, 0, 104, 0, 15, 0,
- 105, 106, 107, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 108, 0, 0, 109, 0, 0, 0, 0,
- 110, 111, 112, 0, 0, 0, 113, 114, 0, 0,
- 0, 115, 116, 0, 100, 0, 117, 0, 118, 101,
- 102, 0, 103, 119, 0, 0, 0, 120, 0, 0,
- 0, 121, 122, 0, 0, 417, 0, 0, 0, 0,
- 104, 0, 15, 0, 105, 106, 107, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 108, 0, 0, 109,
- 0, 0, 0, 0, 110, 111, 112, 0, 0, 0,
- 113, 114, 0, 0, 0, 115, 116, 0, 100, 0,
- 117, 0, 118, 101, 102, 0, 103, 119, 0, 0,
- 0, 120, 0, 0, 0, 121, 122, 0, 0, 473,
- 0, 0, 0, 0, 104, 0, 15, 0, 105, 106,
- 107, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 108, 0, 0, 109, 0, 0, 0, 0, 110, 111,
- 112, 0, 0, 0, 113, 114, 0, 0, 0, 115,
- 116, 0, 100, 0, 117, 0, 118, 101, 102, 0,
- 103, 119, 0, 0, 0, 120, 0, 0, 0, 121,
- 122, 0, 0, 524, 0, 0, 0, 0, 104, 0,
- 15, 0, 105, 106, 107, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 108, 0, 0, 109, 0, 0,
- 0, 0, 110, 111, 112, 0, 0, 0, 113, 114,
- 0, 0, 0, 115, 116, 0, 0, 0, 117, 0,
- 118, 0, 0, 0, 0, 119, 0, 0, 0, 120,
- 0, 0, 0, 121, 122, 0, 0, 847, 694, 715,
- 6, 7, 8, 101, 102, 0, 103, 9, 10, 11,
- 716, 0, 717, 718, 719, 720, 721, 722, 723, 724,
- 725, 726, 727, 13, 104, 14, 15, 0, 105, 106,
- 107, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 108, 0, 0, 109, 0, 16, 0, 0, 110, 111,
- 112, 0, 0, 0, 113, 114, 0, 0, 0, 115,
- 116, 0, 0, 0, 117, 0, 118, 728, 0, 0,
- 0, 119, 729, 0, 0, 120, 0, 730, 0, 121,
- 122, 0, 579, 694, 60, 0, 0, 0, 101, 102,
- 0, 103, 0, 0, 0, 716, 0, 717, 718, 719,
- 720, 721, 722, 723, 724, 725, 726, 727, 0, 104,
- 0, 15, 0, 105, 106, 107, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 108, 0, 0, 109, 0,
- 0, 0, 0, 110, 111, 112, 0, 0, 0, 113,
- 114, 0, 100, 0, 115, 116, 0, 101, 102, 117,
- 103, 118, 61, 0, 0, 0, 119, 62, 0, 0,
- 120, 0, 730, 0, 121, 122, 0, 579, 104, 0,
- 15, 0, 105, 106, 107, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 108, 0, 0, 109, 0, 0,
- 0, 0, 110, 111, 112, 0, 0, 0, 113, 114,
- 0, 0, 0, 115, 116, 0, 0, 0, 117, 0,
- 118, 0, 0, 0, 0, 119, 0, 0, 0, 120,
- 0, 0, 0, 121, 122, 0, 490, 149, 150, 0,
- 151, 152, 0, 0, 0, 153, 154, 155, 156, 157,
- 158, 159, 160, 161, 162, 163, 164, 165, 166, 167,
- 168, 169, 170, 171, 0, 100, 5, 6, 7, 8,
- 101, 102, 0, 103, 9, 10, 11, 172, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 13, 104, 14, 15, 0, 105, 106, 107, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 108, 0, 0,
- 109, 174, 16, 0, 0, 110, 111, 112, 0, 0,
- 303, 113, 114, 0, 0, 0, 115, 116, 0, 0,
- 0, 117, 0, 118, 22, 0, 0, 0, 119, 24,
- 0, 0, 120, 0, 0, 0, 121, 122, 100, 5,
- 0, 7, 140, 101, 102, 0, 103, 9, 10, 11,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 13, 104, 0, 15, 0, 105, 106,
- 107, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 108, 0, 0, 109, 0, 16, 0, 0, 110, 111,
- 112, 0, 0, 0, 113, 114, 0, 100, 0, 115,
- 116, 0, 101, 102, 117, 103, 118, 22, 0, 0,
- 0, 119, 24, 0, 0, 120, 0, 0, 0, 121,
- 122, 0, 0, 104, 0, 15, 0, 105, 106, 107,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 108,
- 0, 0, 109, 0, 0, 0, 0, 110, 111, 112,
- 0, 0, 0, 113, 114, 0, 100, 0, 115, 116,
- 0, 101, 102, 117, 103, 118, 370, 0, 0, 0,
- 119, 0, 0, 0, 120, 0, 0, 0, 121, 122,
- 0, 0, 104, 0, 15, 0, 105, 106, 107, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 108, 0,
- 0, 109, 0, 0, 0, 0, 110, 111, 112, 0,
- 0, 0, 113, 114, 0, 100, 0, 115, 116, 0,
- 101, 102, 117, 103, 118, 0, 0, 0, 0, 119,
- 0, 0, 0, 120, 0, 811, 0, 121, 122, 0,
- 0, 104, 0, 15, 0, 105, 106, 107, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 108, 0, 0,
- 109, 0, 0, 0, 0, 110, 111, 112, 0, 0,
- 0, 113, 114, 0, 100, 0, 115, 116, 0, 101,
- 102, 117, 103, 118, 0, 0, 0, 0, 119, 0,
- 0, 0, 120, 0, 0, 0, 121, 122, 0, 0,
- 104, 0, 15, 0, 105, 106, 107, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 108, 0, 0, 109,
- 0, 0, 0, 0, 110, 111, 112, 0, 0, 0,
- 113, 114, 0, 100, 0, 245, 116, 0, 101, 102,
- 117, 103, 118, 0, 0, 0, 0, 119, 0, 0,
- 0, 120, 0, 0, 0, 121, 122, 0, 0, 104,
- 0, 15, 0, 105, 106, 107, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 108, 0, 0, 109, 0,
- 0, 0, 0, 110, 111, 112, 0, 0, 0, 113,
- 114, 0, 528, 0, 247, 116, 0, 101, 102, 117,
- 103, 118, 0, 0, 0, 0, 119, 0, 0, 0,
- 120, 0, 0, 0, 121, 122, 0, 0, 104, 0,
- 15, 0, 105, 106, 107, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 108, 0, 0, 109, 0, 0,
- 0, 0, 110, 111, 112, 0, 0, 0, 113, 114,
- 0, 0, 0, 115, 116, 0, 0, 0, 117, 0,
- 118, 0, 0, 0, 0, 119, 0, 0, 0, 120,
- 0, 0, 563, 121, 122, 5, 0, 7, 140, 0,
- 0, 0, 0, 9, 10, 11, 0, 0, 0, 563,
- 0, 0, 5, 0, 7, 140, 0, 0, 0, 13,
- 9, 10, 11, 0, 5, 6, 7, 8, 0, 0,
- 449, 0, 9, 10, 11, 0, 13, 0, 0, 0,
- 0, 16, 0, 0, 0, 0, 0, 0, 13, 4,
- 14, -129, 5, 6, 7, 8, 0, 0, 16, 0,
- 9, 10, 11, 22, -454, -454, -454, 0, 24, 0,
- 16, 0, 0, 564, -454, 12, 13, 0, 14, 15,
- 22, -453, -453, -453, 0, 24, 0, 0, 0, 0,
- 564, -453, 22, 0, 0, 0, 0, 24, 16, 0,
- 0, 17, 18, -129, 0, 0, 0, 0, 0, 0,
- 0, 0, -129, 0, 19, 20, 21, 0, 0, 0,
- 22, 0, 0, 0, 23, 24, 25, 26, 0, 4,
- 27, -129, 5, 6, 7, 8, 0, 0, 0, 0,
- 9, 10, 11, 0, 0, 0, 0, 0, 4, 0,
- -129, 5, 6, 7, 8, 0, 13, 0, 14, 9,
- 10, 11, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 13, 0, 14, 16, 0,
- 0, 549, 550, -129, 0, 0, 0, 0, 0, 0,
- 0, 0, -129, 0, 0, 0, 0, 16, 0, 0,
- 22, 0, -129, 447, 0, 24, 5, 6, 7, 8,
- 27, -129, 449, 0, 9, 10, 11, 0, 0, 22,
- 0, 0, 0, 0, 24, 5, 6, 7, 8, 27,
- 13, 0, 14, 9, 10, 11, 5, 89, 7, 90,
- 0, 0, 0, 0, 9, 10, 11, 0, 0, 13,
- 352, 14, 16, 5, 0, 7, 140, 0, 0, 0,
- 13, 9, 10, 11, 0, 0, 0, 0, 0, 0,
- 0, 16, 0, 0, 22, 0, 0, 13, 0, 24,
- 15, 0, 16, -399, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 22, 0, 0, 0, 0, 24, 16,
- 0, 0, 0, 821, 22, 0, 0, 0, 0, 24,
- 0, 0, 0, 0, 674, 0, 0, 0, 0, 149,
- 150, 22, 151, 152, 0, 0, 24, 153, 154, 155,
- 156, 157, 158, 159, 160, 161, 162, 163, 164, 165,
- 166, 167, 168, 169, 170, 171, 0, 0, 0, 0,
- 0, 0, 149, 150, 0, 151, 152, 0, 0, 172,
- 153, 154, 155, 156, 157, 158, 159, 160, 161, 162,
- 163, 164, 165, 166, 167, 168, 169, 170, 171, 0,
- 173, 0, 0, 0, 0, 0, 0, 149, 150, 0,
- 151, 152, 373, 174, 0, 153, 154, 155, 156, 157,
- 158, 159, 160, 161, 162, 163, 164, 165, 166, 167,
- 168, 169, 170, 171, 0, 0, 0, 0, 0, 0,
- 149, 150, 0, 151, 152, 0, 174, 172, 153, 154,
- 155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
- 165, 166, 167, 168, 169, 170, 171, 5, 0, 7,
- 288, 0, 0, 0, 0, 9, 10, 11, 0, 0,
- 606, 174, 0, 0, 0, 0, 5, 6, 7, 8,
- 0, 13, 667, 14, 9, 10, 11, 5, 6, 7,
- 8, 0, 0, 0, 0, 9, 10, 11, 0, 0,
- 13, 0, 14, 16, 174, 0, 0, 0, 280, 0,
- 0, 13, 0, 14, 0, 0, 0, 281, 282, 0,
- 0, 0, 16, 0, 0, 22, 5, 6, 7, 8,
- 24, 0, 0, 16, 9, 10, 11, 5, 0, 7,
- 140, 0, 0, 0, 22, 9, 10, 11, 0, 24,
- 13, 0, 0, 0, 5, 22, 7, 288, 0, 0,
- 24, 13, 9, 10, 11, 0, 0, 0, 0, 0,
- 0, 0, 16, 0, 0, 0, 0, 0, 13, 0,
- 0, 0, 0, 16, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 22, 0, 0, 0, 0, 24,
- 16, 0, 0, 0, 0, 22, 0, 0, 0, 0,
- 24, 0, 0, 0, 14, 0, 0, 0, 0, 0,
- 0, 0, 22, 0, 249, 250, 251, 24, 252, 253,
- 254, 255, 256, 257, 258, 259, 260, 261, 262, 263,
- 264, 265, 249, 250, 251, 921, 252, 253, 254, 255,
- 256, 257, 258, 259, 260, 261, 262, 263, 264, 265,
- 249, 250, 251, 0, 252, 253, 254, 255, 256, 257,
- 258, 259, 260, 261, 262, 263, 264, 265
-};
-
-static const short yycheck[] = { 56,
- 57, 16, 85, 36, 19, 20, 33, 200, 23, 83,
- 25, 26, 91, 324, 24, 316, 2, 3, 2, 3,
- 53, 54, 55, 38, 39, 40, 22, 209, 24, 343,
- 105, 106, 31, 80, 203, 349, 177, 112, 345, 2,
- 3, 286, 66, 270, 281, 2, 3, 80, 123, 177,
- 223, 578, 9, 10, 11, 88, 42, 67, 42, 74,
- 135, 71, 416, 223, 440, 515, 142, 95, 571, 145,
- 673, 67, 704, 194, 31, 71, 33, 1, 77, 42,
- 1, 344, 438, 1, 804, 42, 85, 9, 351, 10,
- 115, 331, 43, 108, 204, 1, 359, 624, 239, 30,
- 919, 0, 3, 1, 30, 3, 4, 5, 6, 7,
- 50, 280, 10, 64, 12, 13, 14, 43, 43, 1,
- 77, 3, 4, 0, 27, 50, 83, 41, 85, 948,
- 28, 146, 30, 148, 91, 214, 87, 3, 4, 332,
- 322, 42, 199, 50, 783, 595, 86, 597, 173, 63,
- 343, 30, 50, 792, 3, 4, 349, 172, 64, 81,
- 880, 64, 65, 87, 82, 797, 87, 182, 183, 409,
- 185, 186, 622, 43, 72, 208, 413, 64, 423, 77,
- 50, 238, 419, 81, 357, 142, 219, 714, 145, 429,
- 72, 3, 191, 913, 64, 77, 195, 357, 918, 426,
- 920, 557, 43, 82, 83, 204, 72, 286, 64, 929,
- 43, 77, 227, 43, 271, 240, 409, 820, 30, 340,
- 245, 87, 247, 72, 856, 282, 241, 337, 77, 3,
- 4, 341, 3, 4, 191, 376, 283, 194, 195, 223,
- 81, 961, 43, 55, 545, 3, 4, 204, 81, 50,
- 283, 81, 64, 268, 269, 1, 30, 214, 4, 5,
- 6, 7, 27, 766, 767, 30, 12, 13, 14, 64,
- 510, 444, 648, 513, 299, 5, 41, 7, 82, 32,
- 33, 55, 28, 639, 444, 478, 64, 480, 30, 346,
- 64, 65, 307, 70, 369, 82, 83, 55, 538, 309,
- 3, 72, 81, 336, 50, 87, 77, 86, 3, 4,
- 53, 54, 666, 309, 72, 87, 87, 82, 511, 77,
- 513, 86, 64, 65, 281, 68, 72, 30, 87, 386,
- 358, 77, 360, 82, 81, 598, 599, 86, 337, 602,
- 641, 87, 341, 9, 423, 3, 4, 5, 6, 7,
- 365, 492, 55, 81, 881, 64, 65, 4, 86, 6,
- 7, 64, 65, 81, 421, 12, 13, 14, 86, 326,
- 3, 4, 81, 357, 82, 825, 64, 72, 86, 606,
- 337, 28, 77, 340, 341, 64, 3, 4, 64, 65,
- 7, 532, 87, 408, 7, 64, 659, 660, 661, 30,
- 627, 664, 665, 50, 532, 81, 127, 128, 433, 64,
- 425, 938, 939, 30, 72, 86, 81, 30, 82, 77,
- 657, 86, 86, 686, 451, 72, 80, 437, 691, 81,
- 77, 64, 677, 64, 65, 82, 83, 464, 55, 72,
- 81, 437, 55, 429, 77, 3, 4, 64, 87, 3,
- 4, 64, 65, 81, 440, 756, 413, 43, 86, 416,
- 77, 768, 419, 30, 489, 64, 429, 82, 609, 64,
- 65, 486, 429, 3, 4, 432, 30, 440, 651, 64,
- 707, 3, 4, 440, 747, 748, 749, 656, 55, 43,
- 83, 651, 685, 662, 451, 571, 572, 64, 65, 82,
- 30, 55, 83, 86, 81, 3, 64, 534, 30, 7,
- 64, 64, 65, 43, 72, 530, 539, 82, 82, 77,
- 543, 86, 86, 77, 33, 55, 789, 554, 81, 766,
- 767, 81, 30, 55, 64, 780, 773, 774, 64, 65,
- 59, 60, 64, 62, 63, 64, 65, 77, 57, 64,
- 65, 537, 81, 552, 817, 77, 43, 55, 82, 73,
- 74, 75, 81, 81, 647, 588, 64, 624, 591, 83,
- 32, 82, 571, 572, 537, 86, 81, 534, 652, 653,
- 537, 59, 60, 884, 62, 63, 64, 65, 64, 852,
- 82, 83, 675, 81, 908, 552, 910, 554, 677, 614,
- 82, 354, 10, 356, 3, 4, 115, 81, 7, 624,
- 68, 658, 686, 687, 571, 572, 663, 82, 575, 643,
- 644, 86, 637, 87, 81, 658, 27, 73, 74, 75,
- 663, 30, 895, 632, 9, 82, 145, 83, 624, 86,
- 624, 82, 3, 82, 955, 86, 7, 86, 647, 73,
- 74, 75, 963, 73, 74, 75, 55, 714, 657, 83,
- 88, 624, 648, 83, 173, 64, 65, 624, 725, 30,
- 745, 6, 7, 64, 65, 632, 675, 12, 13, 14,
- 695, 55, 56, 57, 82, 648, 41, 440, 72, 646,
- 647, 648, 82, 875, 55, 652, 653, 450, 451, 714,
- 657, 780, 41, 64, 65, 86, 43, 43, 735, 666,
- 81, 726, 769, 81, 223, 908, 673, 910, 675, 729,
- 49, 50, 51, 52, 53, 54, 55, 56, 57, 686,
- 687, 240, 728, 729, 81, 81, 245, 81, 247, 822,
- 53, 54, 55, 56, 57, 802, 820, 81, 805, 806,
- 88, 81, 68, 81, 87, 788, 813, 88, 68, 745,
- 81, 745, 81, 41, 88, 83, 81, 766, 767, 843,
- 27, 828, 83, 30, 773, 774, 83, 43, 735, 83,
- 533, 83, 745, 88, 41, 81, 86, 82, 745, 81,
- 299, 82, 3, 1, 87, 83, 4, 5, 6, 7,
- 553, 554, 10, 860, 12, 13, 14, 64, 65, 766,
- 767, 82, 565, 566, 871, 43, 773, 774, 86, 83,
- 28, 81, 68, 822, 881, 82, 231, 88, 83, 86,
- 43, 584, 585, 43, 83, 86, 835, 43, 64, 244,
- 64, 64, 50, 43, 249, 250, 82, 356, 357, 254,
- 255, 256, 257, 258, 259, 260, 261, 262, 263, 264,
- 265, 82, 919, 820, 72, 822, 881, 7, 43, 77,
- 82, 16, 68, 1, 43, 3, 64, 82, 835, 87,
- 8, 9, 86, 11, 82, 942, 843, 82, 64, 68,
- 83, 948, 83, 17, 88, 648, 81, 68, 82, 81,
- 81, 29, 82, 31, 81, 33, 34, 35, 82, 9,
- 82, 64, 82, 86, 5, 6, 7, 45, 82, 81,
- 48, 12, 13, 14, 433, 53, 54, 55, 82, 81,
- 10, 59, 60, 82, 0, 444, 64, 65, 0, 30,
- 426, 69, 451, 71, 805, 332, 745, 676, 76, 511,
- 87, 683, 80, 425, 488, 464, 84, 85, 795, 87,
- 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
- 50, 51, 52, 53, 54, 55, 56, 57, 703, 357,
- 489, 734, 735, 388, 389, 1, 289, 3, 4, 5,
- 6, 7, 8, 9, 685, 11, 12, 13, 14, 15,
- 480, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
- 365, 511, 410, 486, 581, 534, 881, 881, 513, 45,
- 943, 420, 48, 945, 50, 432, 432, 53, 54, 55,
- 575, 25, 562, 59, 60, 554, 653, 843, 64, 65,
- 840, 555, 308, 69, 537, 71, 72, 566, 428, 835,
- 76, 77, 532, 428, 80, 707, 82, 83, 84, 85,
- 609, 87, -1, -1, -1, 376, 585, -1, -1, -1,
- 485, -1, 1, -1, 3, 4, 5, 6, 7, 8,
- 9, -1, 11, 12, 13, 14, 15, 502, 17, 18,
- 19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
- 29, 30, 31, -1, 33, 34, 35, 50, 51, 52,
- 53, 54, 55, 56, 57, -1, 45, -1, -1, 48,
- -1, 50, -1, -1, 53, 54, 55, -1, -1, -1,
- 59, 60, 651, -1, -1, 64, 65, 5, 6, 7,
- 69, -1, 71, 72, 12, 13, 14, 76, 77, -1,
- -1, 80, -1, 82, 83, 84, 85, -1, 87, 45,
- 46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
- 56, 57, 587, -1, -1, 1, -1, 3, 4, 5,
- 6, 7, 8, 9, -1, 11, 12, 13, 14, 15,
- 605, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, 30, 31, -1, 33, 34, 35,
- -1, -1, -1, -1, -1, -1, 735, -1, -1, 45,
- -1, -1, 48, -1, 50, -1, -1, 53, 54, 55,
- -1, -1, -1, 59, 60, -1, -1, -1, 64, 65,
- -1, -1, -1, 69, -1, 71, 72, -1, -1, -1,
- 76, 77, -1, -1, 80, -1, 82, -1, 84, 85,
- -1, 87, 4, 5, 6, 7, -1, -1, 683, -1,
- 12, 13, 14, 46, 47, 48, 49, 50, 51, 52,
- 53, 54, 55, 56, 57, -1, 28, -1, 30, 704,
- -1, -1, -1, -1, -1, -1, 711, 51, 52, 53,
- 54, 55, 56, 57, -1, -1, 721, -1, 50, -1,
- -1, -1, 40, 41, 42, -1, 44, 45, 46, 47,
- 48, 49, 50, 51, 52, 53, 54, 55, 56, 57,
- 72, 1, -1, 3, 4, 77, -1, -1, 8, 9,
- 82, 11, -1, -1, -1, 15, 761, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, 26, 27, 86, 29,
- -1, 31, -1, 33, 34, 35, -1, -1, 783, -1,
- -1, 786, -1, -1, -1, 45, -1, 792, 48, -1,
- 795, -1, 797, 53, 54, 55, -1, -1, -1, 59,
- 60, -1, -1, -1, 64, 65, -1, -1, -1, 69,
- -1, 71, 72, -1, -1, -1, 76, 77, -1, -1,
- 80, -1, 82, 83, 84, 85, -1, 87, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 842, 48, 49,
- 50, 51, 52, 53, 54, 55, 56, 57, 853, -1,
- 1, 856, 3, 4, -1, -1, -1, 8, 9, -1,
- 11, 866, -1, -1, 15, -1, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, -1, 29, -1,
- 31, -1, 33, 34, 35, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 45, -1, -1, 48, -1, -1,
- -1, -1, 53, 54, 55, -1, -1, -1, 59, 60,
- -1, -1, -1, 64, 65, -1, -1, -1, 69, -1,
- 71, 72, -1, -1, -1, 76, 77, -1, -1, 80,
- -1, 82, -1, 84, 85, 1, 87, 3, 4, -1,
- -1, -1, 8, 9, -1, 11, -1, -1, -1, 15,
- -1, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, -1, 29, -1, 31, -1, 33, 34, 35,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 45,
- -1, -1, 48, -1, -1, -1, -1, 53, 54, 55,
- -1, -1, -1, 59, 60, -1, -1, -1, 64, 65,
- -1, -1, -1, 69, -1, 71, 72, -1, -1, -1,
- 76, 77, -1, -1, 80, -1, 82, -1, 84, 85,
- 1, 87, 3, 4, -1, 6, 7, 8, 9, -1,
- 11, 12, 13, 14, 47, 48, 49, 50, 51, 52,
- 53, 54, 55, 56, 57, -1, -1, 28, 29, -1,
- 31, -1, 33, 34, 35, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 45, -1, -1, 48, -1, 50,
- -1, -1, 53, 54, 55, -1, -1, -1, 59, 60,
- -1, -1, -1, 64, 65, -1, -1, -1, 69, -1,
- 71, 72, -1, -1, -1, 76, 77, -1, -1, 80,
- -1, -1, -1, 84, 85, 1, 87, 3, 4, -1,
- -1, -1, 8, 9, 42, 11, 44, 45, 46, 47,
- 48, 49, 50, 51, 52, 53, 54, 55, 56, 57,
- -1, -1, -1, 29, -1, 31, -1, 33, 34, 35,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 45,
- -1, -1, 48, -1, -1, -1, -1, 53, 54, 55,
- -1, -1, -1, 59, 60, -1, -1, 63, 64, 65,
- -1, -1, -1, 69, -1, 71, 72, -1, -1, -1,
- 76, 77, -1, -1, 80, -1, -1, 83, 84, 85,
- 1, 87, 3, 4, -1, -1, -1, 8, 9, -1,
- 11, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 29, -1,
- 31, -1, 33, 34, 35, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 45, -1, -1, 48, -1, -1,
- -1, -1, 53, 54, 55, -1, -1, -1, 59, 60,
- -1, -1, 63, 64, 65, -1, -1, -1, 69, -1,
- 71, 72, -1, -1, -1, 76, 77, -1, -1, 80,
- -1, -1, 83, 84, 85, 1, 87, 3, -1, -1,
- -1, -1, 8, 9, -1, 11, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 29, -1, 31, -1, 33, 34, 35,
- -1, -1, -1, -1, -1, 41, -1, -1, -1, 45,
- -1, -1, 48, -1, -1, -1, -1, 53, 54, 55,
- -1, -1, -1, 59, 60, -1, -1, 63, 64, 65,
- -1, -1, -1, 69, -1, 71, -1, -1, -1, -1,
- 76, -1, -1, -1, 80, 1, -1, 3, 84, 85,
- -1, 87, 8, 9, -1, 11, 1, -1, -1, 4,
- -1, 6, 7, -1, -1, -1, -1, 12, 13, 14,
- -1, -1, -1, 29, -1, 31, -1, 33, 34, 35,
- -1, -1, -1, 28, -1, -1, 31, -1, -1, 45,
- -1, -1, 48, -1, -1, -1, -1, 53, 54, 55,
- -1, -1, -1, 59, 60, 50, -1, -1, 64, 65,
- -1, -1, -1, 69, -1, 71, -1, -1, -1, -1,
- 76, -1, -1, -1, 80, -1, -1, 72, 84, 85,
- 1, 87, 77, 4, 5, 6, 7, 82, 83, -1,
- -1, 12, 13, 14, -1, -1, -1, -1, -1, 1,
- -1, -1, 4, 5, 6, 7, 27, 28, -1, 30,
- 12, 13, 14, -1, -1, -1, -1, -1, -1, -1,
- 41, -1, -1, -1, -1, 27, 28, -1, 30, 50,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 41,
- -1, -1, -1, 64, 65, -1, -1, -1, 50, -1,
- -1, 72, -1, -1, -1, -1, 77, -1, -1, -1,
- -1, 82, 64, 65, -1, 86, 87, -1, -1, -1,
- 72, -1, -1, -1, -1, 77, -1, -1, -1, -1,
- 82, -1, -1, 1, 86, 87, 4, 5, 6, 7,
- -1, -1, -1, -1, 12, 13, 14, -1, -1, -1,
- -1, -1, 1, -1, -1, 4, 5, 6, 7, 27,
- 28, -1, 30, 12, 13, 14, -1, 4, 5, 6,
- 7, -1, -1, 41, -1, 12, 13, 14, -1, 28,
- -1, 30, 50, 1, -1, -1, 4, 5, 6, 7,
- -1, 28, -1, 30, 12, 13, 14, -1, -1, -1,
- -1, 50, -1, -1, 72, -1, -1, -1, -1, 77,
- 28, -1, 30, 50, 82, -1, 3, -1, 86, 87,
- -1, 8, 9, 72, 11, -1, -1, -1, 77, -1,
- -1, -1, 50, -1, -1, 72, -1, -1, 87, -1,
- 77, -1, 29, -1, 31, 82, 33, 34, 35, -1,
- -1, -1, -1, -1, 72, -1, -1, -1, 45, 77,
- -1, 48, -1, -1, -1, -1, 53, 54, 55, 87,
- -1, -1, 59, 60, -1, -1, -1, 64, 65, -1,
- 3, -1, 69, -1, 71, 8, 9, -1, 11, 76,
- -1, -1, -1, 80, -1, -1, -1, 84, 85, -1,
- -1, 88, -1, -1, -1, -1, 29, -1, 31, -1,
- 33, 34, 35, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 45, -1, -1, 48, -1, -1, -1, -1,
- 53, 54, 55, -1, -1, -1, 59, 60, -1, -1,
- -1, 64, 65, -1, 3, -1, 69, -1, 71, 8,
- 9, -1, 11, 76, -1, -1, -1, 80, -1, -1,
- -1, 84, 85, -1, -1, 88, -1, -1, -1, -1,
- 29, -1, 31, -1, 33, 34, 35, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 45, -1, -1, 48,
- -1, -1, -1, -1, 53, 54, 55, -1, -1, -1,
- 59, 60, -1, -1, -1, 64, 65, -1, 3, -1,
- 69, -1, 71, 8, 9, -1, 11, 76, -1, -1,
- -1, 80, -1, -1, -1, 84, 85, -1, -1, 88,
- -1, -1, -1, -1, 29, -1, 31, -1, 33, 34,
- 35, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 45, -1, -1, 48, -1, -1, -1, -1, 53, 54,
- 55, -1, -1, -1, 59, 60, -1, -1, -1, 64,
- 65, -1, 3, -1, 69, -1, 71, 8, 9, -1,
- 11, 76, -1, -1, -1, 80, -1, -1, -1, 84,
- 85, -1, -1, 88, -1, -1, -1, -1, 29, -1,
- 31, -1, 33, 34, 35, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 45, -1, -1, 48, -1, -1,
- -1, -1, 53, 54, 55, -1, -1, -1, 59, 60,
- -1, -1, -1, 64, 65, -1, -1, -1, 69, -1,
- 71, -1, -1, -1, -1, 76, -1, -1, -1, 80,
- -1, -1, -1, 84, 85, -1, -1, 88, 3, 4,
- 5, 6, 7, 8, 9, -1, 11, 12, 13, 14,
- 15, -1, 17, 18, 19, 20, 21, 22, 23, 24,
- 25, 26, 27, 28, 29, 30, 31, -1, 33, 34,
- 35, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 45, -1, -1, 48, -1, 50, -1, -1, 53, 54,
- 55, -1, -1, -1, 59, 60, -1, -1, -1, 64,
- 65, -1, -1, -1, 69, -1, 71, 72, -1, -1,
- -1, 76, 77, -1, -1, 80, -1, 82, -1, 84,
- 85, -1, 87, 3, 4, -1, -1, -1, 8, 9,
- -1, 11, -1, -1, -1, 15, -1, 17, 18, 19,
- 20, 21, 22, 23, 24, 25, 26, 27, -1, 29,
- -1, 31, -1, 33, 34, 35, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 45, -1, -1, 48, -1,
- -1, -1, -1, 53, 54, 55, -1, -1, -1, 59,
- 60, -1, 3, -1, 64, 65, -1, 8, 9, 69,
- 11, 71, 72, -1, -1, -1, 76, 77, -1, -1,
- 80, -1, 82, -1, 84, 85, -1, 87, 29, -1,
- 31, -1, 33, 34, 35, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 45, -1, -1, 48, -1, -1,
- -1, -1, 53, 54, 55, -1, -1, -1, 59, 60,
- -1, -1, -1, 64, 65, -1, -1, -1, 69, -1,
- 71, -1, -1, -1, -1, 76, -1, -1, -1, 80,
- -1, -1, -1, 84, 85, -1, 87, 3, 4, -1,
- 6, 7, -1, -1, -1, 11, 12, 13, 14, 15,
- 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, -1, 3, 4, 5, 6, 7,
- 8, 9, -1, 11, 12, 13, 14, 43, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 28, 29, 30, 31, -1, 33, 34, 35, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 45, -1, -1,
- 48, 77, 50, -1, -1, 53, 54, 55, -1, -1,
- 86, 59, 60, -1, -1, -1, 64, 65, -1, -1,
- -1, 69, -1, 71, 72, -1, -1, -1, 76, 77,
- -1, -1, 80, -1, -1, -1, 84, 85, 3, 4,
- -1, 6, 7, 8, 9, -1, 11, 12, 13, 14,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 28, 29, -1, 31, -1, 33, 34,
- 35, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 45, -1, -1, 48, -1, 50, -1, -1, 53, 54,
- 55, -1, -1, -1, 59, 60, -1, 3, -1, 64,
- 65, -1, 8, 9, 69, 11, 71, 72, -1, -1,
- -1, 76, 77, -1, -1, 80, -1, -1, -1, 84,
- 85, -1, -1, 29, -1, 31, -1, 33, 34, 35,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 45,
- -1, -1, 48, -1, -1, -1, -1, 53, 54, 55,
- -1, -1, -1, 59, 60, -1, 3, -1, 64, 65,
- -1, 8, 9, 69, 11, 71, 72, -1, -1, -1,
- 76, -1, -1, -1, 80, -1, -1, -1, 84, 85,
- -1, -1, 29, -1, 31, -1, 33, 34, 35, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 45, -1,
- -1, 48, -1, -1, -1, -1, 53, 54, 55, -1,
- -1, -1, 59, 60, -1, 3, -1, 64, 65, -1,
- 8, 9, 69, 11, 71, -1, -1, -1, -1, 76,
- -1, -1, -1, 80, -1, 82, -1, 84, 85, -1,
- -1, 29, -1, 31, -1, 33, 34, 35, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 45, -1, -1,
- 48, -1, -1, -1, -1, 53, 54, 55, -1, -1,
- -1, 59, 60, -1, 3, -1, 64, 65, -1, 8,
- 9, 69, 11, 71, -1, -1, -1, -1, 76, -1,
- -1, -1, 80, -1, -1, -1, 84, 85, -1, -1,
- 29, -1, 31, -1, 33, 34, 35, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, 45, -1, -1, 48,
- -1, -1, -1, -1, 53, 54, 55, -1, -1, -1,
- 59, 60, -1, 3, -1, 64, 65, -1, 8, 9,
- 69, 11, 71, -1, -1, -1, -1, 76, -1, -1,
- -1, 80, -1, -1, -1, 84, 85, -1, -1, 29,
- -1, 31, -1, 33, 34, 35, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 45, -1, -1, 48, -1,
- -1, -1, -1, 53, 54, 55, -1, -1, -1, 59,
- 60, -1, 3, -1, 64, 65, -1, 8, 9, 69,
- 11, 71, -1, -1, -1, -1, 76, -1, -1, -1,
- 80, -1, -1, -1, 84, 85, -1, -1, 29, -1,
- 31, -1, 33, 34, 35, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 45, -1, -1, 48, -1, -1,
- -1, -1, 53, 54, 55, -1, -1, -1, 59, 60,
- -1, -1, -1, 64, 65, -1, -1, -1, 69, -1,
- 71, -1, -1, -1, -1, 76, -1, -1, -1, 80,
- -1, -1, 1, 84, 85, 4, -1, 6, 7, -1,
- -1, -1, -1, 12, 13, 14, -1, -1, -1, 1,
- -1, -1, 4, -1, 6, 7, -1, -1, -1, 28,
- 12, 13, 14, -1, 4, 5, 6, 7, -1, -1,
- 10, -1, 12, 13, 14, -1, 28, -1, -1, -1,
- -1, 50, -1, -1, -1, -1, -1, -1, 28, 1,
- 30, 3, 4, 5, 6, 7, -1, -1, 50, -1,
- 12, 13, 14, 72, 73, 74, 75, -1, 77, -1,
- 50, -1, -1, 82, 83, 27, 28, -1, 30, 31,
- 72, 73, 74, 75, -1, 77, -1, -1, -1, -1,
- 82, 83, 72, -1, -1, -1, -1, 77, 50, -1,
- -1, 53, 54, 55, -1, -1, -1, -1, -1, -1,
- -1, -1, 64, -1, 66, 67, 68, -1, -1, -1,
- 72, -1, -1, -1, 76, 77, 78, 79, -1, 1,
- 82, 3, 4, 5, 6, 7, -1, -1, -1, -1,
- 12, 13, 14, -1, -1, -1, -1, -1, 1, -1,
- 3, 4, 5, 6, 7, -1, 28, -1, 30, 12,
- 13, 14, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 28, -1, 30, 50, -1,
- -1, 53, 54, 55, -1, -1, -1, -1, -1, -1,
- -1, -1, 64, -1, -1, -1, -1, 50, -1, -1,
- 72, -1, 55, 1, -1, 77, 4, 5, 6, 7,
- 82, 64, 10, -1, 12, 13, 14, -1, -1, 72,
- -1, -1, -1, -1, 77, 4, 5, 6, 7, 82,
- 28, -1, 30, 12, 13, 14, 4, 5, 6, 7,
- -1, -1, -1, -1, 12, 13, 14, -1, -1, 28,
- 1, 30, 50, 4, -1, 6, 7, -1, -1, -1,
- 28, 12, 13, 14, -1, -1, -1, -1, -1, -1,
- -1, 50, -1, -1, 72, -1, -1, 28, -1, 77,
- 31, -1, 50, 81, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 72, -1, -1, -1, -1, 77, 50,
- -1, -1, -1, 82, 72, -1, -1, -1, -1, 77,
- -1, -1, -1, -1, 82, -1, -1, -1, -1, 3,
- 4, 72, 6, 7, -1, -1, 77, 11, 12, 13,
- 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 26, 27, 28, 29, -1, -1, -1, -1,
- -1, -1, 3, 4, -1, 6, 7, -1, -1, 43,
- 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
- 21, 22, 23, 24, 25, 26, 27, 28, 29, -1,
- 64, -1, -1, -1, -1, -1, -1, 3, 4, -1,
- 6, 7, 43, 77, -1, 11, 12, 13, 14, 15,
- 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
- 26, 27, 28, 29, -1, -1, -1, -1, -1, -1,
- 3, 4, -1, 6, 7, -1, 77, 43, 11, 12,
- 13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
- 23, 24, 25, 26, 27, 28, 29, 4, -1, 6,
- 7, -1, -1, -1, -1, 12, 13, 14, -1, -1,
- 43, 77, -1, -1, -1, -1, 4, 5, 6, 7,
- -1, 28, 10, 30, 12, 13, 14, 4, 5, 6,
- 7, -1, -1, -1, -1, 12, 13, 14, -1, -1,
- 28, -1, 30, 50, 77, -1, -1, -1, 55, -1,
- -1, 28, -1, 30, -1, -1, -1, 64, 65, -1,
- -1, -1, 50, -1, -1, 72, 4, 5, 6, 7,
- 77, -1, -1, 50, 12, 13, 14, 4, -1, 6,
- 7, -1, -1, -1, 72, 12, 13, 14, -1, 77,
- 28, -1, -1, -1, 4, 72, 6, 7, -1, -1,
- 77, 28, 12, 13, 14, -1, -1, -1, -1, -1,
- -1, -1, 50, -1, -1, -1, -1, -1, 28, -1,
- -1, -1, -1, 50, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 72, -1, -1, -1, -1, 77,
- 50, -1, -1, -1, -1, 72, -1, -1, -1, -1,
- 77, -1, -1, -1, 30, -1, -1, -1, -1, -1,
- -1, -1, 72, -1, 40, 41, 42, 77, 44, 45,
- 46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
- 56, 57, 40, 41, 42, 43, 44, 45, 46, 47,
- 48, 49, 50, 51, 52, 53, 54, 55, 56, 57,
- 40, 41, 42, -1, 44, 45, 46, 47, 48, 49,
- 50, 51, 52, 53, 54, 55, 56, 57
-};
-/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
-#line 3 "/usr/share/misc/bison.simple"
-/* This file comes from bison-1.28. */
-
-/* Skeleton output parser for bison,
- Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2, or (at your option)
- any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA. */
-
-/* As a special exception, when this file is copied by Bison into a
- Bison output file, you may use that output file without restriction.
- This special exception was added by the Free Software Foundation
- in version 1.24 of Bison. */
-
-/* This is the parser code that is written into each bison parser
- when the %semantic_parser declaration is not specified in the grammar.
- It was written by Richard Stallman by simplifying the hairy parser
- used when %semantic_parser is specified. */
-
-#ifndef YYSTACK_USE_ALLOCA
-#ifdef alloca
-#define YYSTACK_USE_ALLOCA
-#else /* alloca not defined */
-#ifdef __GNUC__
-#define YYSTACK_USE_ALLOCA
-#define alloca __builtin_alloca
-#else /* not GNU C. */
-#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi) || (defined (__sun) && defined (__i386))
-#define YYSTACK_USE_ALLOCA
-#include <alloca.h>
-#else /* not sparc */
-/* We think this test detects Watcom and Microsoft C. */
-/* This used to test MSDOS, but that is a bad idea
- since that symbol is in the user namespace. */
-#if (defined (_MSDOS) || defined (_MSDOS_)) && !defined (__TURBOC__)
-#if 0 /* No need for malloc.h, which pollutes the namespace;
- instead, just don't use alloca. */
-#include <malloc.h>
-#endif
-#else /* not MSDOS, or __TURBOC__ */
-#if defined(_AIX)
-/* I don't know what this was needed for, but it pollutes the namespace.
- So I turned it off. rms, 2 May 1997. */
-/* #include <malloc.h> */
- #pragma alloca
-#define YYSTACK_USE_ALLOCA
-#else /* not MSDOS, or __TURBOC__, or _AIX */
-#if 0
-#ifdef __hpux /* haible@ilog.fr says this works for HPUX 9.05 and up,
- and on HPUX 10. Eventually we can turn this on. */
-#define YYSTACK_USE_ALLOCA
-#define alloca __builtin_alloca
-#endif /* __hpux */
-#endif
-#endif /* not _AIX */
-#endif /* not MSDOS, or __TURBOC__ */
-#endif /* not sparc */
-#endif /* not GNU C */
-#endif /* alloca not defined */
-#endif /* YYSTACK_USE_ALLOCA not defined */
-
-#ifdef YYSTACK_USE_ALLOCA
-#define YYSTACK_ALLOC alloca
-#else
-#define YYSTACK_ALLOC malloc
-#endif
-
-/* Note: there must be only one dollar sign in this file.
- It is replaced by the list of actions, each action
- as one case of the switch. */
-
-#define yyerrok (yyerrstatus = 0)
-#define yyclearin (yychar = YYEMPTY)
-#define YYEMPTY -2
-#define YYEOF 0
-#define YYACCEPT goto yyacceptlab
-#define YYABORT goto yyabortlab
-#define YYERROR goto yyerrlab1
-/* Like YYERROR except do call yyerror.
- This remains here temporarily to ease the
- transition to the new meaning of YYERROR, for GCC.
- Once GCC version 2 has supplanted version 1, this can go. */
-#define YYFAIL goto yyerrlab
-#define YYRECOVERING() (!!yyerrstatus)
-#define YYBACKUP(token, value) \
-do \
- if (yychar == YYEMPTY && yylen == 1) \
- { yychar = (token), yylval = (value); \
- yychar1 = YYTRANSLATE (yychar); \
- YYPOPSTACK; \
- goto yybackup; \
- } \
- else \
- { yyerror ("syntax error: cannot back up"); YYERROR; } \
-while (0)
-
-#define YYTERROR 1
-#define YYERRCODE 256
-
-#ifndef YYPURE
-#define YYLEX yylex()
-#endif
-
-#ifdef YYPURE
-#ifdef YYLSP_NEEDED
-#ifdef YYLEX_PARAM
-#define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM)
-#else
-#define YYLEX yylex(&yylval, &yylloc)
-#endif
-#else /* not YYLSP_NEEDED */
-#ifdef YYLEX_PARAM
-#define YYLEX yylex(&yylval, YYLEX_PARAM)
-#else
-#define YYLEX yylex(&yylval)
-#endif
-#endif /* not YYLSP_NEEDED */
-#endif
-
-/* If nonreentrant, generate the variables here */
-
-#ifndef YYPURE
-
-int yychar; /* the lookahead symbol */
-YYSTYPE yylval; /* the semantic value of the */
- /* lookahead symbol */
-
-#ifdef YYLSP_NEEDED
-YYLTYPE yylloc; /* location data for the lookahead */
- /* symbol */
-#endif
-
-int yynerrs; /* number of parse errors so far */
-#endif /* not YYPURE */
-
-#if YYDEBUG != 0
-int yydebug; /* nonzero means print parse trace */
-/* Since this is uninitialized, it does not stop multiple parsers
- from coexisting. */
-#endif
-
-/* YYINITDEPTH indicates the initial size of the parser's stacks */
-
-#ifndef YYINITDEPTH
-#define YYINITDEPTH 200
-#endif
-
-/* YYMAXDEPTH is the maximum size the stacks can grow to
- (effective only if the built-in stack extension method is used). */
-
-#if YYMAXDEPTH == 0
-#undef YYMAXDEPTH
-#endif
-
-#ifndef YYMAXDEPTH
-#define YYMAXDEPTH 10000
-#endif
-
-/* Define __yy_memcpy. Note that the size argument
- should be passed with type unsigned int, because that is what the non-GCC
- definitions require. With GCC, __builtin_memcpy takes an arg
- of type size_t, but it can handle unsigned int. */
-
-#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
-#define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT)
-#else /* not GNU C or C++ */
-#ifndef __cplusplus
-
-/* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
-static void
-__yy_memcpy (to, from, count)
- char *to;
- char *from;
- unsigned int count;
-{
- register char *f = from;
- register char *t = to;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
-}
-
-#else /* __cplusplus */
-
-/* This is the most reliable way to avoid incompatibilities
- in available built-in functions on various systems. */
-static void
-__yy_memcpy (char *to, char *from, unsigned int count)
-{
- register char *t = to;
- register char *f = from;
- register int i = count;
-
- while (i-- > 0)
- *t++ = *f++;
-}
-
-#endif
-#endif
-
-#line 217 "/usr/share/misc/bison.simple"
-
-/* The user can define YYPARSE_PARAM as the name of an argument to be passed
- into yyparse. The argument should have type void *.
- It should actually point to an object.
- Grammar actions can access the variable by casting it
- to the proper pointer type. */
-
-#ifdef YYPARSE_PARAM
-#ifdef __cplusplus
-#define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL
-#else /* not __cplusplus */
-#define YYPARSE_PARAM_ARG YYPARSE_PARAM
-#define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
-#endif /* not __cplusplus */
-#else /* not YYPARSE_PARAM */
-#define YYPARSE_PARAM_ARG
-#define YYPARSE_PARAM_DECL
-#endif /* not YYPARSE_PARAM */
-
-/* Prevent warning if -Wstrict-prototypes. */
-#ifdef __GNUC__
-#ifdef YYPARSE_PARAM
-int yyparse (void *);
-#else
-int yyparse (void);
-#endif
-#endif
-
-int
-yyparse(YYPARSE_PARAM_ARG)
- YYPARSE_PARAM_DECL
-{
- register int yystate;
- register int yyn;
- register short *yyssp;
- register YYSTYPE *yyvsp;
- int yyerrstatus; /* number of tokens to shift before error messages enabled */
- int yychar1 = 0; /* lookahead token as an internal (translated) token number */
-
- short yyssa[YYINITDEPTH]; /* the state stack */
- YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */
-
- short *yyss = yyssa; /* refer to the stacks thru separate pointers */
- YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */
-
-#ifdef YYLSP_NEEDED
- YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */
- YYLTYPE *yyls = yylsa;
- YYLTYPE *yylsp;
-
-#define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
-#else
-#define YYPOPSTACK (yyvsp--, yyssp--)
-#endif
-
- int yystacksize = YYINITDEPTH;
- int yyfree_stacks = 0;
-
-#ifdef YYPURE
- int yychar;
- YYSTYPE yylval;
- int yynerrs;
-#ifdef YYLSP_NEEDED
- YYLTYPE yylloc;
-#endif
-#endif
-
- YYSTYPE yyval; /* the variable used to return */
- /* semantic values from the action */
- /* routines */
-
- int yylen;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Starting parse\n");
-#endif
-
- yystate = 0;
- yyerrstatus = 0;
- yynerrs = 0;
- yychar = YYEMPTY; /* Cause a token to be read. */
-
- /* Initialize stack pointers.
- Waste one element of value and location stack
- so that they stay on the same level as the state stack.
- The wasted elements are never initialized. */
-
- yyssp = yyss - 1;
- yyvsp = yyvs;
-#ifdef YYLSP_NEEDED
- yylsp = yyls;
-#endif
-
-/* Push a new state, which is found in yystate . */
-/* In all cases, when you get here, the value and location stacks
- have just been pushed. so pushing a state here evens the stacks. */
-yynewstate:
-
- *++yyssp = yystate;
-
- if (yyssp >= yyss + yystacksize - 1)
- {
- /* Give user a chance to reallocate the stack */
- /* Use copies of these so that the &'s don't force the real ones into memory. */
- YYSTYPE *yyvs1 = yyvs;
- short *yyss1 = yyss;
-#ifdef YYLSP_NEEDED
- YYLTYPE *yyls1 = yyls;
-#endif
-
- /* Get the current used size of the three stacks, in elements. */
- int size = yyssp - yyss + 1;
-
-#ifdef yyoverflow
- /* Each stack pointer address is followed by the size of
- the data in use in that stack, in bytes. */
-#ifdef YYLSP_NEEDED
- /* This used to be a conditional around just the two extra args,
- but that might be undefined if yyoverflow is a macro. */
- yyoverflow("parser stack overflow",
- &yyss1, size * sizeof (*yyssp),
- &yyvs1, size * sizeof (*yyvsp),
- &yyls1, size * sizeof (*yylsp),
- &yystacksize);
-#else
- yyoverflow("parser stack overflow",
- &yyss1, size * sizeof (*yyssp),
- &yyvs1, size * sizeof (*yyvsp),
- &yystacksize);
-#endif
-
- yyss = yyss1; yyvs = yyvs1;
-#ifdef YYLSP_NEEDED
- yyls = yyls1;
-#endif
-#else /* no yyoverflow */
- /* Extend the stack our own way. */
- if (yystacksize >= YYMAXDEPTH)
- {
- yyerror("parser stack overflow");
- if (yyfree_stacks)
- {
- free (yyss);
- free (yyvs);
-#ifdef YYLSP_NEEDED
- free (yyls);
-#endif
- }
- return 2;
- }
- yystacksize *= 2;
- if (yystacksize > YYMAXDEPTH)
- yystacksize = YYMAXDEPTH;
-#ifndef YYSTACK_USE_ALLOCA
- yyfree_stacks = 1;
-#endif
- yyss = (short *) YYSTACK_ALLOC (yystacksize * sizeof (*yyssp));
- __yy_memcpy ((char *)yyss, (char *)yyss1,
- size * (unsigned int) sizeof (*yyssp));
- yyvs = (YYSTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yyvsp));
- __yy_memcpy ((char *)yyvs, (char *)yyvs1,
- size * (unsigned int) sizeof (*yyvsp));
-#ifdef YYLSP_NEEDED
- yyls = (YYLTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yylsp));
- __yy_memcpy ((char *)yyls, (char *)yyls1,
- size * (unsigned int) sizeof (*yylsp));
-#endif
-#endif /* no yyoverflow */
-
- yyssp = yyss + size - 1;
- yyvsp = yyvs + size - 1;
-#ifdef YYLSP_NEEDED
- yylsp = yyls + size - 1;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Stack size increased to %d\n", yystacksize);
-#endif
-
- if (yyssp >= yyss + yystacksize - 1)
- YYABORT;
- }
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Entering state %d\n", yystate);
-#endif
-
- goto yybackup;
- yybackup:
-
-/* Do appropriate processing given the current state. */
-/* Read a lookahead token if we need one and don't already have one. */
-/* yyresume: */
-
- /* First try to decide what to do without reference to lookahead token. */
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yydefault;
-
- /* Not known => get a lookahead token if don't already have one. */
-
- /* yychar is either YYEMPTY or YYEOF
- or a valid token in external form. */
-
- if (yychar == YYEMPTY)
- {
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Reading a token: ");
-#endif
- yychar = YYLEX;
- }
-
- /* Convert token to internal form (in yychar1) for indexing tables with */
-
- if (yychar <= 0) /* This means end of input. */
- {
- yychar1 = 0;
- yychar = YYEOF; /* Don't call YYLEX any more */
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Now at end of input.\n");
-#endif
- }
- else
- {
- yychar1 = YYTRANSLATE(yychar);
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
- /* Give the individual parser a way to print the precise meaning
- of a token, for further debugging info. */
-#ifdef YYPRINT
- YYPRINT (stderr, yychar, yylval);
-#endif
- fprintf (stderr, ")\n");
- }
-#endif
- }
-
- yyn += yychar1;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
- goto yydefault;
-
- yyn = yytable[yyn];
-
- /* yyn is what to do for this token type in this state.
- Negative => reduce, -yyn is rule number.
- Positive => shift, yyn is new state.
- New state is final state => don't bother to shift,
- just return success.
- 0, or most negative number => error. */
-
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrlab;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrlab;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
- /* Shift the lookahead token. */
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
-#endif
-
- /* Discard the token being shifted unless it is eof. */
- if (yychar != YYEOF)
- yychar = YYEMPTY;
-
- *++yyvsp = yylval;
-#ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
-#endif
-
- /* count tokens shifted since error; after three, turn off error status. */
- if (yyerrstatus) yyerrstatus--;
-
- yystate = yyn;
- goto yynewstate;
-
-/* Do the default action for the current state. */
-yydefault:
-
- yyn = yydefact[yystate];
- if (yyn == 0)
- goto yyerrlab;
-
-/* Do a reduction. yyn is the number of a rule to reduce with. */
-yyreduce:
- yylen = yyr2[yyn];
- if (yylen > 0)
- yyval = yyvsp[1-yylen]; /* implement default value of the action */
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- int i;
-
- fprintf (stderr, "Reducing via rule %d (line %d), ",
- yyn, yyrline[yyn]);
-
- /* Print the symbols being reduced, and their result. */
- for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
- fprintf (stderr, "%s ", yytname[yyrhs[i]]);
- fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
- }
-#endif
-
-
- switch (yyn) {
-
-case 1:
-#line 262 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids an empty source file");
- finish_file ();
- ;
- break;}
-case 2:
-#line 267 "objc-parse.y"
-{
- /* In case there were missing closebraces,
- get us back to the global binding level. */
- while (! global_bindings_p ())
- poplevel (0, 0, 0);
- finish_file ();
- ;
- break;}
-case 3:
-#line 281 "objc-parse.y"
-{yyval.ttype = NULL_TREE; ;
- break;}
-case 5:
-#line 282 "objc-parse.y"
-{yyval.ttype = NULL_TREE; ;
- break;}
-case 10:
-#line 290 "objc-parse.y"
-{ STRIP_NOPS (yyvsp[-2].ttype);
- if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
- && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
- || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
- assemble_asm (yyvsp[-2].ttype);
- else
- error ("argument of `asm' is not a constant string"); ;
- break;}
-case 11:
-#line 298 "objc-parse.y"
-{ RESTORE_WARN_FLAGS (yyvsp[-1].ttype); ;
- break;}
-case 12:
-#line 303 "objc-parse.y"
-{ if (pedantic)
- error ("ANSI C forbids data definition with no type or storage class");
- else if (!flag_traditional)
- warning ("data definition has no type or storage class");
-
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 13:
-#line 312 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 14:
-#line 316 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 15:
-#line 320 "objc-parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 16:
-#line 322 "objc-parse.y"
-{ shadow_tag (yyvsp[-1].ttype); ;
- break;}
-case 19:
-#line 326 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C does not allow extra `;' outside of a function"); ;
- break;}
-case 20:
-#line 332 "objc-parse.y"
-{ if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE))
- YYERROR1;
- reinit_parse_for_function (); ;
- break;}
-case 21:
-#line 337 "objc-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 22:
-#line 339 "objc-parse.y"
-{ finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 23:
-#line 344 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 24:
-#line 348 "objc-parse.y"
-{ if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE))
- YYERROR1;
- reinit_parse_for_function (); ;
- break;}
-case 25:
-#line 353 "objc-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 26:
-#line 355 "objc-parse.y"
-{ finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 27:
-#line 360 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 28:
-#line 364 "objc-parse.y"
-{ if (! start_function (NULL_TREE, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE))
- YYERROR1;
- reinit_parse_for_function (); ;
- break;}
-case 29:
-#line 369 "objc-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 30:
-#line 371 "objc-parse.y"
-{ finish_function (0);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 31:
-#line 376 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 36:
-#line 389 "objc-parse.y"
-{ yyval.code = ADDR_EXPR; ;
- break;}
-case 37:
-#line 391 "objc-parse.y"
-{ yyval.code = NEGATE_EXPR; ;
- break;}
-case 38:
-#line 393 "objc-parse.y"
-{ yyval.code = CONVERT_EXPR; ;
- break;}
-case 39:
-#line 395 "objc-parse.y"
-{ yyval.code = PREINCREMENT_EXPR; ;
- break;}
-case 40:
-#line 397 "objc-parse.y"
-{ yyval.code = PREDECREMENT_EXPR; ;
- break;}
-case 41:
-#line 399 "objc-parse.y"
-{ yyval.code = BIT_NOT_EXPR; ;
- break;}
-case 42:
-#line 401 "objc-parse.y"
-{ yyval.code = TRUTH_NOT_EXPR; ;
- break;}
-case 43:
-#line 405 "objc-parse.y"
-{ yyval.ttype = build_compound_expr (yyvsp[0].ttype); ;
- break;}
-case 44:
-#line 410 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 46:
-#line 416 "objc-parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 47:
-#line 418 "objc-parse.y"
-{ chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 49:
-#line 424 "objc-parse.y"
-{ yyval.ttype = build_indirect_ref (yyvsp[0].ttype, "unary *"); ;
- break;}
-case 50:
-#line 427 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- RESTORE_WARN_FLAGS (yyvsp[-1].ttype); ;
- break;}
-case 51:
-#line 430 "objc-parse.y"
-{ yyval.ttype = build_unary_op (yyvsp[-1].code, yyvsp[0].ttype, 0);
- overflow_warning (yyval.ttype); ;
- break;}
-case 52:
-#line 434 "objc-parse.y"
-{ tree label = lookup_label (yyvsp[0].ttype);
- if (pedantic)
- pedwarn ("ANSI C forbids `&&'");
- if (label == 0)
- yyval.ttype = null_pointer_node;
- else
- {
- TREE_USED (label) = 1;
- yyval.ttype = build1 (ADDR_EXPR, ptr_type_node, label);
- TREE_CONSTANT (yyval.ttype) = 1;
- }
- ;
- break;}
-case 53:
-#line 462 "objc-parse.y"
-{ skip_evaluation--;
- if (TREE_CODE (yyvsp[0].ttype) == COMPONENT_REF
- && DECL_C_BIT_FIELD (TREE_OPERAND (yyvsp[0].ttype, 1)))
- error ("`sizeof' applied to a bit-field");
- yyval.ttype = c_sizeof (TREE_TYPE (yyvsp[0].ttype)); ;
- break;}
-case 54:
-#line 468 "objc-parse.y"
-{ skip_evaluation--;
- yyval.ttype = c_sizeof (groktypename (yyvsp[-1].ttype)); ;
- break;}
-case 55:
-#line 471 "objc-parse.y"
-{ skip_evaluation--;
- yyval.ttype = c_alignof_expr (yyvsp[0].ttype); ;
- break;}
-case 56:
-#line 474 "objc-parse.y"
-{ skip_evaluation--;
- yyval.ttype = c_alignof (groktypename (yyvsp[-1].ttype)); ;
- break;}
-case 57:
-#line 477 "objc-parse.y"
-{ yyval.ttype = build_unary_op (REALPART_EXPR, yyvsp[0].ttype, 0); ;
- break;}
-case 58:
-#line 479 "objc-parse.y"
-{ yyval.ttype = build_unary_op (IMAGPART_EXPR, yyvsp[0].ttype, 0); ;
- break;}
-case 59:
-#line 481 "objc-parse.y"
-{ yyval.ttype = build_va_arg (yyvsp[-3].ttype, groktypename (yyvsp[-1].ttype)); ;
- break;}
-case 60:
-#line 485 "objc-parse.y"
-{ skip_evaluation++; ;
- break;}
-case 61:
-#line 489 "objc-parse.y"
-{ skip_evaluation++; ;
- break;}
-case 63:
-#line 495 "objc-parse.y"
-{ tree type = groktypename (yyvsp[-2].ttype);
- yyval.ttype = build_c_cast (type, yyvsp[0].ttype); ;
- break;}
-case 64:
-#line 498 "objc-parse.y"
-{ start_init (NULL_TREE, NULL, 0);
- yyvsp[-2].ttype = groktypename (yyvsp[-2].ttype);
- really_start_incremental_init (yyvsp[-2].ttype); ;
- break;}
-case 65:
-#line 502 "objc-parse.y"
-{ const char *name;
- tree result = pop_init_level (0);
- tree type = yyvsp[-5].ttype;
- finish_init ();
-
- if (pedantic && ! flag_isoc99)
- pedwarn ("ANSI C forbids constructor expressions");
- if (TYPE_NAME (type) != 0)
- {
- if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
- name = IDENTIFIER_POINTER (TYPE_NAME (type));
- else
- name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
- }
- else
- name = "";
- yyval.ttype = result;
- if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
- {
- int failure = complete_array_type (type, yyval.ttype, 1);
- if (failure)
- abort ();
- }
- ;
- break;}
-case 67:
-#line 531 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 68:
-#line 533 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 69:
-#line 535 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 70:
-#line 537 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 71:
-#line 539 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 72:
-#line 541 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 73:
-#line 543 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 74:
-#line 545 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 75:
-#line 547 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 76:
-#line 549 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 77:
-#line 551 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 78:
-#line 553 "objc-parse.y"
-{ yyval.ttype = parser_build_binary_op (yyvsp[-1].code, yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 79:
-#line 555 "objc-parse.y"
-{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_false_node; ;
- break;}
-case 80:
-#line 558 "objc-parse.y"
-{ skip_evaluation -= yyvsp[-3].ttype == boolean_false_node;
- yyval.ttype = parser_build_binary_op (TRUTH_ANDIF_EXPR, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 81:
-#line 561 "objc-parse.y"
-{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_true_node; ;
- break;}
-case 82:
-#line 564 "objc-parse.y"
-{ skip_evaluation -= yyvsp[-3].ttype == boolean_true_node;
- yyval.ttype = parser_build_binary_op (TRUTH_ORIF_EXPR, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 83:
-#line 567 "objc-parse.y"
-{ yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[-1].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_false_node; ;
- break;}
-case 84:
-#line 570 "objc-parse.y"
-{ skip_evaluation += ((yyvsp[-4].ttype == boolean_true_node)
- - (yyvsp[-4].ttype == boolean_false_node)); ;
- break;}
-case 85:
-#line 573 "objc-parse.y"
-{ skip_evaluation -= yyvsp[-6].ttype == boolean_true_node;
- yyval.ttype = build_conditional_expr (yyvsp[-6].ttype, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 86:
-#line 576 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids omitting the middle term of a ?: expression");
- /* Make sure first operand is calculated only once. */
- yyvsp[0].ttype = save_expr (yyvsp[-1].ttype);
- yyvsp[-1].ttype = truthvalue_conversion (default_conversion (yyvsp[0].ttype));
- skip_evaluation += yyvsp[-1].ttype == boolean_true_node; ;
- break;}
-case 87:
-#line 583 "objc-parse.y"
-{ skip_evaluation -= yyvsp[-4].ttype == boolean_true_node;
- yyval.ttype = build_conditional_expr (yyvsp[-4].ttype, yyvsp[-3].ttype, yyvsp[0].ttype); ;
- break;}
-case 88:
-#line 586 "objc-parse.y"
-{ char class;
- yyval.ttype = build_modify_expr (yyvsp[-2].ttype, NOP_EXPR, yyvsp[0].ttype);
- class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE (yyval.ttype, MODIFY_EXPR);
- ;
- break;}
-case 89:
-#line 594 "objc-parse.y"
-{ char class;
- yyval.ttype = build_modify_expr (yyvsp[-2].ttype, yyvsp[-1].code, yyvsp[0].ttype);
- /* This inhibits warnings in truthvalue_conversion. */
- class = TREE_CODE_CLASS (TREE_CODE (yyval.ttype));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE (yyval.ttype, ERROR_MARK);
- ;
- break;}
-case 90:
-#line 606 "objc-parse.y"
-{
- if (yychar == YYEMPTY)
- yychar = YYLEX;
- yyval.ttype = build_external_ref (yyvsp[0].ttype, yychar == '(');
- ;
- break;}
-case 92:
-#line 613 "objc-parse.y"
-{ yyval.ttype = combine_strings (yyvsp[0].ttype); ;
- break;}
-case 93:
-#line 615 "objc-parse.y"
-{ char class = TREE_CODE_CLASS (TREE_CODE (yyvsp[-1].ttype));
- if (class == 'e' || class == '1'
- || class == '2' || class == '<')
- C_SET_EXP_ORIGINAL_CODE (yyvsp[-1].ttype, ERROR_MARK);
- yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 94:
-#line 621 "objc-parse.y"
-{ yyval.ttype = error_mark_node; ;
- break;}
-case 95:
-#line 623 "objc-parse.y"
-{ tree rtl_exp;
- if (pedantic)
- pedwarn ("ANSI C forbids braced-groups within expressions");
- pop_iterator_stack ();
- pop_label_level ();
- rtl_exp = expand_end_stmt_expr (yyvsp[-2].ttype);
- /* The statements have side effects, so the group does. */
- TREE_SIDE_EFFECTS (rtl_exp) = 1;
-
- if (TREE_CODE (yyvsp[-1].ttype) == BLOCK)
- {
- /* Make a BIND_EXPR for the BLOCK already made. */
- yyval.ttype = build (BIND_EXPR, TREE_TYPE (rtl_exp),
- NULL_TREE, rtl_exp, yyvsp[-1].ttype);
- /* Remove the block from the tree at this point.
- It gets put back at the proper place
- when the BIND_EXPR is expanded. */
- delete_block (yyvsp[-1].ttype);
- }
- else
- yyval.ttype = yyvsp[-1].ttype;
- ;
- break;}
-case 96:
-#line 646 "objc-parse.y"
-{
- /* Make sure we call expand_end_stmt_expr. Otherwise
- we are likely to lose sequences and crash later. */
- pop_iterator_stack ();
- pop_label_level ();
- expand_end_stmt_expr (yyvsp[-2].ttype);
- yyval.ttype = error_mark_node;
- ;
- break;}
-case 97:
-#line 655 "objc-parse.y"
-{ yyval.ttype = build_function_call (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 98:
-#line 657 "objc-parse.y"
-{ yyval.ttype = build_array_ref (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 99:
-#line 659 "objc-parse.y"
-{
- if (doing_objc_thang)
- {
- if (is_public (yyvsp[-2].ttype, yyvsp[0].ttype))
- yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
- else
- yyval.ttype = error_mark_node;
- }
- else
- yyval.ttype = build_component_ref (yyvsp[-2].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 100:
-#line 671 "objc-parse.y"
-{
- tree expr = build_indirect_ref (yyvsp[-2].ttype, "->");
-
- if (doing_objc_thang)
- {
- if (is_public (expr, yyvsp[0].ttype))
- yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
- else
- yyval.ttype = error_mark_node;
- }
- else
- yyval.ttype = build_component_ref (expr, yyvsp[0].ttype);
- ;
- break;}
-case 101:
-#line 685 "objc-parse.y"
-{ yyval.ttype = build_unary_op (POSTINCREMENT_EXPR, yyvsp[-1].ttype, 0); ;
- break;}
-case 102:
-#line 687 "objc-parse.y"
-{ yyval.ttype = build_unary_op (POSTDECREMENT_EXPR, yyvsp[-1].ttype, 0); ;
- break;}
-case 103:
-#line 689 "objc-parse.y"
-{ yyval.ttype = build_message_expr (yyvsp[0].ttype); ;
- break;}
-case 104:
-#line 691 "objc-parse.y"
-{ yyval.ttype = build_selector_expr (yyvsp[0].ttype); ;
- break;}
-case 105:
-#line 693 "objc-parse.y"
-{ yyval.ttype = build_protocol_expr (yyvsp[0].ttype); ;
- break;}
-case 106:
-#line 695 "objc-parse.y"
-{ yyval.ttype = build_encode_expr (yyvsp[0].ttype); ;
- break;}
-case 107:
-#line 697 "objc-parse.y"
-{ yyval.ttype = build_objc_string_object (yyvsp[0].ttype); ;
- break;}
-case 109:
-#line 704 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 111:
-#line 713 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 114:
-#line 721 "objc-parse.y"
-{ c_mark_varargs ();
- if (pedantic)
- pedwarn ("ANSI C does not permit use of `varargs.h'"); ;
- break;}
-case 115:
-#line 731 "objc-parse.y"
-{ ;
- break;}
-case 120:
-#line 747 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 121:
-#line 751 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 122:
-#line 755 "objc-parse.y"
-{ shadow_tag_warned (yyvsp[-1].ttype, 1);
- pedwarn ("empty declaration"); ;
- break;}
-case 123:
-#line 758 "objc-parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 124:
-#line 767 "objc-parse.y"
-{ ;
- break;}
-case 129:
-#line 782 "objc-parse.y"
-{ pending_xref_error ();
- declspec_stack = tree_cons (prefix_attributes,
- current_declspecs,
- declspec_stack);
- split_specs_attrs (yyvsp[0].ttype,
- &current_declspecs, &prefix_attributes); ;
- break;}
-case 130:
-#line 792 "objc-parse.y"
-{ prefix_attributes = chainon (prefix_attributes, yyvsp[0].ttype); ;
- break;}
-case 131:
-#line 797 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 132:
-#line 801 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 133:
-#line 805 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 134:
-#line 809 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 135:
-#line 813 "objc-parse.y"
-{ shadow_tag (yyvsp[-1].ttype); ;
- break;}
-case 136:
-#line 815 "objc-parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 137:
-#line 817 "objc-parse.y"
-{ RESTORE_WARN_FLAGS (yyvsp[-1].ttype); ;
- break;}
-case 138:
-#line 827 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 139:
-#line 829 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
- break;}
-case 140:
-#line 833 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 141:
-#line 835 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 142:
-#line 837 "objc-parse.y"
-{ if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 143:
-#line 842 "objc-parse.y"
-{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 144:
-#line 847 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 145:
-#line 849 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
- break;}
-case 146:
-#line 854 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 147:
-#line 856 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 148:
-#line 858 "objc-parse.y"
-{ if (extra_warnings)
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 149:
-#line 871 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 150:
-#line 873 "objc-parse.y"
-{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, NULL_TREE); ;
- break;}
-case 151:
-#line 875 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 152:
-#line 877 "objc-parse.y"
-{ yyval.ttype = tree_cons (yyvsp[0].ttype, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 153:
-#line 882 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE);
- TREE_STATIC (yyval.ttype) = 1; ;
- break;}
-case 154:
-#line 885 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 155:
-#line 887 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
- TREE_STATIC (yyval.ttype) = 1; ;
- break;}
-case 156:
-#line 890 "objc-parse.y"
-{ if (extra_warnings && TREE_STATIC (yyvsp[-1].ttype))
- warning ("`%s' is not at beginning of declaration",
- IDENTIFIER_POINTER (yyvsp[0].ttype));
- yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype);
- TREE_STATIC (yyval.ttype) = TREE_STATIC (yyvsp[-1].ttype); ;
- break;}
-case 157:
-#line 904 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 158:
-#line 906 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[0].ttype, tree_cons (NULL_TREE, yyvsp[-1].ttype, yyvsp[-2].ttype)); ;
- break;}
-case 159:
-#line 910 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 160:
-#line 912 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 163:
-#line 922 "objc-parse.y"
-{ /* For a typedef name, record the meaning, not the name.
- In case of `foo foo, bar;'. */
- yyval.ttype = lookup_name (yyvsp[0].ttype); ;
- break;}
-case 164:
-#line 926 "objc-parse.y"
-{ yyval.ttype = get_static_reference (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 165:
-#line 928 "objc-parse.y"
-{ yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
- break;}
-case 166:
-#line 933 "objc-parse.y"
-{ yyval.ttype = get_object_reference (yyvsp[0].ttype); ;
- break;}
-case 167:
-#line 935 "objc-parse.y"
-{ yyval.ttype = TREE_TYPE (yyvsp[-1].ttype); ;
- break;}
-case 168:
-#line 937 "objc-parse.y"
-{ yyval.ttype = groktypename (yyvsp[-1].ttype); ;
- break;}
-case 176:
-#line 959 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 177:
-#line 961 "objc-parse.y"
-{ if (TREE_CHAIN (yyvsp[-1].ttype)) yyvsp[-1].ttype = combine_strings (yyvsp[-1].ttype);
- yyval.ttype = yyvsp[-1].ttype;
- ;
- break;}
-case 178:
-#line 968 "objc-parse.y"
-{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
- yyvsp[-1].ttype, prefix_attributes);
- start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
- break;}
-case 179:
-#line 973 "objc-parse.y"
-{ finish_init ();
- finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
- break;}
-case 180:
-#line 976 "objc-parse.y"
-{ tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
- yyvsp[0].ttype, prefix_attributes);
- finish_decl (d, NULL_TREE, yyvsp[-1].ttype);
- ;
- break;}
-case 181:
-#line 984 "objc-parse.y"
-{ yyval.ttype = start_decl (yyvsp[-3].ttype, current_declspecs, 1,
- yyvsp[-1].ttype, prefix_attributes);
- start_init (yyval.ttype, yyvsp[-2].ttype, global_bindings_p ()); ;
- break;}
-case 182:
-#line 989 "objc-parse.y"
-{ finish_init ();
- decl_attributes (yyvsp[-1].ttype, yyvsp[-3].ttype, prefix_attributes);
- finish_decl (yyvsp[-1].ttype, yyvsp[0].ttype, yyvsp[-4].ttype); ;
- break;}
-case 183:
-#line 993 "objc-parse.y"
-{ tree d = start_decl (yyvsp[-2].ttype, current_declspecs, 0,
- yyvsp[0].ttype, prefix_attributes);
- finish_decl (d, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 184:
-#line 1001 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 185:
-#line 1003 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 186:
-#line 1008 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 187:
-#line 1010 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 188:
-#line 1015 "objc-parse.y"
-{ yyval.ttype = yyvsp[-2].ttype; ;
- break;}
-case 189:
-#line 1020 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 190:
-#line 1022 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 191:
-#line 1027 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 192:
-#line 1029 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 193:
-#line 1031 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, build_tree_list (NULL_TREE, yyvsp[-1].ttype)); ;
- break;}
-case 194:
-#line 1033 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-5].ttype, tree_cons (NULL_TREE, yyvsp[-3].ttype, yyvsp[-1].ttype)); ;
- break;}
-case 195:
-#line 1035 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 201:
-#line 1053 "objc-parse.y"
-{ really_start_incremental_init (NULL_TREE); ;
- break;}
-case 202:
-#line 1055 "objc-parse.y"
-{ yyval.ttype = pop_init_level (0); ;
- break;}
-case 203:
-#line 1057 "objc-parse.y"
-{ yyval.ttype = error_mark_node; ;
- break;}
-case 204:
-#line 1063 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids empty initializer braces"); ;
- break;}
-case 210:
-#line 1079 "objc-parse.y"
-{ set_init_label (yyvsp[-1].ttype); ;
- break;}
-case 213:
-#line 1086 "objc-parse.y"
-{ push_init_level (0); ;
- break;}
-case 214:
-#line 1088 "objc-parse.y"
-{ process_init_element (pop_init_level (0)); ;
- break;}
-case 215:
-#line 1090 "objc-parse.y"
-{ process_init_element (yyvsp[0].ttype); ;
- break;}
-case 219:
-#line 1101 "objc-parse.y"
-{ set_init_label (yyvsp[0].ttype); ;
- break;}
-case 220:
-#line 1109 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids nested functions");
-
- push_function_context ();
- if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE))
- {
- pop_function_context ();
- YYERROR1;
- }
- reinit_parse_for_function (); ;
- break;}
-case 221:
-#line 1121 "objc-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 222:
-#line 1129 "objc-parse.y"
-{ finish_function (1);
- pop_function_context (); ;
- break;}
-case 223:
-#line 1135 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids nested functions");
-
- push_function_context ();
- if (! start_function (current_declspecs, yyvsp[0].ttype,
- prefix_attributes, NULL_TREE))
- {
- pop_function_context ();
- YYERROR1;
- }
- reinit_parse_for_function (); ;
- break;}
-case 224:
-#line 1147 "objc-parse.y"
-{ store_parm_decls (); ;
- break;}
-case 225:
-#line 1155 "objc-parse.y"
-{ finish_function (1);
- pop_function_context (); ;
- break;}
-case 228:
-#line 1171 "objc-parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 229:
-#line 1173 "objc-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 230:
-#line 1178 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 231:
-#line 1180 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 232:
-#line 1182 "objc-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 233:
-#line 1189 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 236:
-#line 1201 "objc-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 237:
-#line 1206 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 238:
-#line 1208 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 239:
-#line 1210 "objc-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 240:
-#line 1217 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 242:
-#line 1226 "objc-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 243:
-#line 1231 "objc-parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 244:
-#line 1233 "objc-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 245:
-#line 1235 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 246:
-#line 1237 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 247:
-#line 1244 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 249:
-#line 1250 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 250:
-#line 1252 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 251:
-#line 1257 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 252:
-#line 1259 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 253:
-#line 1264 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 254:
-#line 1266 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 255:
-#line 1271 "objc-parse.y"
-{ yyval.ttype = start_struct (RECORD_TYPE, yyvsp[-1].ttype);
- /* Start scope of tag before parsing components. */
- ;
- break;}
-case 256:
-#line 1275 "objc-parse.y"
-{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
- break;}
-case 257:
-#line 1277 "objc-parse.y"
-{ yyval.ttype = finish_struct (start_struct (RECORD_TYPE, NULL_TREE),
- yyvsp[-2].ttype, chainon (yyvsp[-4].ttype, yyvsp[0].ttype));
- ;
- break;}
-case 258:
-#line 1281 "objc-parse.y"
-{ yyval.ttype = xref_tag (RECORD_TYPE, yyvsp[0].ttype); ;
- break;}
-case 259:
-#line 1283 "objc-parse.y"
-{ yyval.ttype = start_struct (UNION_TYPE, yyvsp[-1].ttype); ;
- break;}
-case 260:
-#line 1285 "objc-parse.y"
-{ yyval.ttype = finish_struct (yyvsp[-3].ttype, yyvsp[-2].ttype, chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
- break;}
-case 261:
-#line 1287 "objc-parse.y"
-{ yyval.ttype = finish_struct (start_struct (UNION_TYPE, NULL_TREE),
- yyvsp[-2].ttype, chainon (yyvsp[-4].ttype, yyvsp[0].ttype));
- ;
- break;}
-case 262:
-#line 1291 "objc-parse.y"
-{ yyval.ttype = xref_tag (UNION_TYPE, yyvsp[0].ttype); ;
- break;}
-case 263:
-#line 1293 "objc-parse.y"
-{ yyval.ttype = start_enum (yyvsp[-1].ttype); ;
- break;}
-case 264:
-#line 1295 "objc-parse.y"
-{ yyval.ttype = finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype),
- chainon (yyvsp[-7].ttype, yyvsp[0].ttype)); ;
- break;}
-case 265:
-#line 1298 "objc-parse.y"
-{ yyval.ttype = start_enum (NULL_TREE); ;
- break;}
-case 266:
-#line 1300 "objc-parse.y"
-{ yyval.ttype = finish_enum (yyvsp[-4].ttype, nreverse (yyvsp[-3].ttype),
- chainon (yyvsp[-6].ttype, yyvsp[0].ttype)); ;
- break;}
-case 267:
-#line 1303 "objc-parse.y"
-{ yyval.ttype = xref_tag (ENUMERAL_TYPE, yyvsp[0].ttype); ;
- break;}
-case 271:
-#line 1314 "objc-parse.y"
-{ if (pedantic && ! flag_isoc99)
- pedwarn ("comma at end of enumerator list"); ;
- break;}
-case 272:
-#line 1320 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 273:
-#line 1322 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
- pedwarn ("no semicolon at end of struct or union"); ;
- break;}
-case 274:
-#line 1327 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 275:
-#line 1329 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[-1].ttype); ;
- break;}
-case 276:
-#line 1331 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("extra semicolon in struct or union specified"); ;
- break;}
-case 277:
-#line 1335 "objc-parse.y"
-{
- tree interface = lookup_interface (yyvsp[-1].ttype);
-
- if (interface)
- yyval.ttype = get_class_ivars (interface);
- else
- {
- error ("Cannot find interface declaration for `%s'",
- IDENTIFIER_POINTER (yyvsp[-1].ttype));
- yyval.ttype = NULL_TREE;
- }
- ;
- break;}
-case 278:
-#line 1360 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 279:
-#line 1365 "objc-parse.y"
-{
- /* Support for unnamed structs or unions as members of
- structs or unions (which is [a] useful and [b] supports
- MS P-SDK). */
- if (pedantic)
- pedwarn ("ANSI C doesn't support unnamed structs/unions");
-
- yyval.ttype = grokfield(yyvsp[-2].filename, yyvsp[-1].lineno, NULL, current_declspecs, NULL_TREE);
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack);
- ;
- break;}
-case 280:
-#line 1378 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 281:
-#line 1383 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids member declarations with no members");
- shadow_tag(yyvsp[0].ttype);
- yyval.ttype = NULL_TREE; ;
- break;}
-case 282:
-#line 1388 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 283:
-#line 1390 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- RESTORE_WARN_FLAGS (yyvsp[-1].ttype); ;
- break;}
-case 285:
-#line 1397 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 286:
-#line 1402 "objc-parse.y"
-{ yyval.ttype = grokfield (yyvsp[-3].filename, yyvsp[-2].lineno, yyvsp[-1].ttype, current_declspecs, NULL_TREE);
- decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 287:
-#line 1406 "objc-parse.y"
-{ yyval.ttype = grokfield (yyvsp[-5].filename, yyvsp[-4].lineno, yyvsp[-3].ttype, current_declspecs, yyvsp[-1].ttype);
- decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 288:
-#line 1409 "objc-parse.y"
-{ yyval.ttype = grokfield (yyvsp[-4].filename, yyvsp[-3].lineno, NULL_TREE, current_declspecs, yyvsp[-1].ttype);
- decl_attributes (yyval.ttype, yyvsp[0].ttype, prefix_attributes); ;
- break;}
-case 290:
-#line 1421 "objc-parse.y"
-{ if (yyvsp[-2].ttype == error_mark_node)
- yyval.ttype = yyvsp[-2].ttype;
- else
- yyval.ttype = chainon (yyvsp[0].ttype, yyvsp[-2].ttype); ;
- break;}
-case 291:
-#line 1426 "objc-parse.y"
-{ yyval.ttype = error_mark_node; ;
- break;}
-case 292:
-#line 1432 "objc-parse.y"
-{ yyval.ttype = build_enumerator (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 293:
-#line 1434 "objc-parse.y"
-{ yyval.ttype = build_enumerator (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 294:
-#line 1439 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 295:
-#line 1441 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 296:
-#line 1446 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 298:
-#line 1452 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 299:
-#line 1454 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 300:
-#line 1459 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 301:
-#line 1461 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, yyvsp[0].ttype, yyvsp[-1].ttype); ;
- break;}
-case 302:
-#line 1466 "objc-parse.y"
-{ yyval.ttype = yyvsp[-1].ttype; ;
- break;}
-case 303:
-#line 1469 "objc-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[-1].ttype, yyvsp[0].ttype); ;
- break;}
-case 304:
-#line 1471 "objc-parse.y"
-{ yyval.ttype = make_pointer_declarator (yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 305:
-#line 1473 "objc-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 306:
-#line 1475 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 307:
-#line 1477 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, yyvsp[-2].ttype, NULL_TREE); ;
- break;}
-case 308:
-#line 1479 "objc-parse.y"
-{ yyval.ttype = build_nt (CALL_EXPR, NULL_TREE, yyvsp[0].ttype, NULL_TREE); ;
- break;}
-case 309:
-#line 1481 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 310:
-#line 1483 "objc-parse.y"
-{ yyval.ttype = build_nt (ARRAY_REF, NULL_TREE, NULL_TREE); ;
- break;}
-case 311:
-#line 1487 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 312:
-#line 1496 "objc-parse.y"
-{
- if (pedantic && yyvsp[0].ends_in_label)
- pedwarn ("ANSI C forbids label at end of compound statement");
- ;
- break;}
-case 314:
-#line 1505 "objc-parse.y"
-{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
- break;}
-case 315:
-#line 1507 "objc-parse.y"
-{ yyval.ends_in_label = 0; ;
- break;}
-case 319:
-#line 1519 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- pushlevel (0);
- clear_last_expr ();
- expand_start_bindings (0);
- if (objc_method_context)
- add_objc_decls ();
- ;
- break;}
-case 321:
-#line 1533 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids label declarations"); ;
- break;}
-case 324:
-#line 1544 "objc-parse.y"
-{ tree link;
- for (link = yyvsp[-1].ttype; link; link = TREE_CHAIN (link))
- {
- tree label = shadow_label (TREE_VALUE (link));
- C_DECLARED_LABEL_FLAG (label) = 1;
- declare_nonlocal_label (label);
- }
- ;
- break;}
-case 325:
-#line 1558 "objc-parse.y"
-{;
- break;}
-case 327:
-#line 1562 "objc-parse.y"
-{ compstmt_count++; ;
- break;}
-case 328:
-#line 1565 "objc-parse.y"
-{ yyval.ttype = convert (void_type_node, integer_zero_node); ;
- break;}
-case 329:
-#line 1567 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), 1, 0);
- yyval.ttype = poplevel (1, 1, 0); ;
- break;}
-case 330:
-#line 1571 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), kept_level_p (), 0);
- yyval.ttype = poplevel (kept_level_p (), 0, 0); ;
- break;}
-case 331:
-#line 1575 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_end_bindings (getdecls (), kept_level_p (), 0);
- yyval.ttype = poplevel (kept_level_p (), 0, 0); ;
- break;}
-case 332:
-#line 1582 "objc-parse.y"
-{ if (current_function_decl == 0)
- {
- error ("braced-group within expression allowed only inside a function");
- YYERROR;
- }
- /* We must force a BLOCK for this level
- so that, if it is not expanded later,
- there is a way to turn off the entire subtree of blocks
- that are contained in it. */
- keep_next_level ();
- push_iterator_stack ();
- push_label_level ();
- yyval.ttype = expand_start_stmt_expr ();
- compstmt_count++;
- ;
- break;}
-case 333:
-#line 1599 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 336:
-#line 1613 "objc-parse.y"
-{ emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- c_expand_start_cond (truthvalue_conversion (yyvsp[-1].ttype), 0,
- compstmt_count);
- yyval.itype = stmt_count;
- if_stmt_file = yyvsp[-5].filename;
- if_stmt_line = yyvsp[-4].lineno;
- position_after_white_space (); ;
- break;}
-case 337:
-#line 1627 "objc-parse.y"
-{ stmt_count++;
- compstmt_count++;
- emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
- /* See comment in `while' alternative, above. */
- emit_nop ();
- expand_start_loop_continue_elsewhere (1);
- position_after_white_space (); ;
- break;}
-case 338:
-#line 1635 "objc-parse.y"
-{ expand_loop_continue_here (); ;
- break;}
-case 339:
-#line 1639 "objc-parse.y"
-{ yyval.filename = input_filename; ;
- break;}
-case 340:
-#line 1643 "objc-parse.y"
-{ yyval.lineno = lineno; ;
- break;}
-case 341:
-#line 1648 "objc-parse.y"
-{ ;
- break;}
-case 342:
-#line 1653 "objc-parse.y"
-{ ;
- break;}
-case 343:
-#line 1658 "objc-parse.y"
-{ yyval.ends_in_label = yyvsp[0].ends_in_label; ;
- break;}
-case 344:
-#line 1663 "objc-parse.y"
-{ yyval.ends_in_label = 0; ;
- break;}
-case 345:
-#line 1665 "objc-parse.y"
-{ yyval.ends_in_label = 1; ;
- break;}
-case 346:
-#line 1671 "objc-parse.y"
-{ stmt_count++; ;
- break;}
-case 348:
-#line 1674 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-3].filename, yyvsp[-2].lineno);
-/* It appears that this should not be done--that a non-lvalue array
- shouldn't get an error if the value isn't used.
- Section 3.2.2.1 says that an array lvalue gets converted to a pointer
- if it appears as a top-level expression,
- but says nothing about non-lvalue arrays. */
-#if 0
- /* Call default_conversion to get an error
- on referring to a register array if pedantic. */
- if (TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == ARRAY_TYPE
- || TREE_CODE (TREE_TYPE (yyvsp[-1].ttype)) == FUNCTION_TYPE)
- yyvsp[-1].ttype = default_conversion (yyvsp[-1].ttype);
-#endif
- iterator_expand (yyvsp[-1].ttype); ;
- break;}
-case 349:
-#line 1690 "objc-parse.y"
-{ c_expand_start_else ();
- yyvsp[-1].itype = stmt_count;
- position_after_white_space (); ;
- break;}
-case 350:
-#line 1694 "objc-parse.y"
-{ c_expand_end_cond ();
- if (extra_warnings && stmt_count == yyvsp[-3].itype)
- warning ("empty body in an else-statement"); ;
- break;}
-case 351:
-#line 1698 "objc-parse.y"
-{ c_expand_end_cond ();
- /* This warning is here instead of in simple_if, because we
- do not want a warning if an empty if is followed by an
- else statement. Increment stmt_count so we don't
- give a second error if this is a nested `if'. */
- if (extra_warnings && stmt_count++ == yyvsp[0].itype)
- warning_with_file_and_line (if_stmt_file, if_stmt_line,
- "empty body in an if-statement"); ;
- break;}
-case 352:
-#line 1710 "objc-parse.y"
-{ c_expand_end_cond (); ;
- break;}
-case 353:
-#line 1712 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-2].filename, yyvsp[-1].lineno);
- /* The emit_nop used to come before emit_line_note,
- but that made the nop seem like part of the preceding line.
- And that was confusing when the preceding line was
- inside of an if statement and was not really executed.
- I think it ought to work to put the nop after the line number.
- We will see. --rms, July 15, 1991. */
- emit_nop (); ;
- break;}
-case 354:
-#line 1722 "objc-parse.y"
-{ /* Don't start the loop till we have succeeded
- in parsing the end test. This is to make sure
- that we end every loop we start. */
- expand_start_loop (1);
- emit_line_note (input_filename, lineno);
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion (yyvsp[-1].ttype));
- position_after_white_space (); ;
- break;}
-case 355:
-#line 1731 "objc-parse.y"
-{ expand_end_loop (); ;
- break;}
-case 356:
-#line 1734 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion (yyvsp[-2].ttype));
- expand_end_loop (); ;
- break;}
-case 357:
-#line 1740 "objc-parse.y"
-{ expand_end_loop (); ;
- break;}
-case 358:
-#line 1743 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- /* See comment in `while' alternative, above. */
- emit_nop ();
- if (yyvsp[-1].ttype) c_expand_expr_stmt (yyvsp[-1].ttype);
- /* Next step is to call expand_start_loop_continue_elsewhere,
- but wait till after we parse the entire for (...).
- Otherwise, invalid input might cause us to call that
- fn without calling expand_end_loop. */
- ;
- break;}
-case 359:
-#line 1755 "objc-parse.y"
-{ yyvsp[0].lineno = lineno;
- yyval.filename = input_filename; ;
- break;}
-case 360:
-#line 1758 "objc-parse.y"
-{
- /* Start the loop. Doing this after parsing
- all the expressions ensures we will end the loop. */
- expand_start_loop_continue_elsewhere (1);
- /* Emit the end-test, with a line number. */
- emit_line_note (yyvsp[-2].filename, yyvsp[-3].lineno);
- if (yyvsp[-4].ttype)
- expand_exit_loop_if_false (NULL_PTR,
- truthvalue_conversion (yyvsp[-4].ttype));
- yyvsp[-3].lineno = lineno;
- yyvsp[-2].filename = input_filename;
- position_after_white_space (); ;
- break;}
-case 361:
-#line 1771 "objc-parse.y"
-{ /* Emit the increment expression, with a line number. */
- emit_line_note (yyvsp[-4].filename, yyvsp[-5].lineno);
- expand_loop_continue_here ();
- if (yyvsp[-3].ttype)
- c_expand_expr_stmt (yyvsp[-3].ttype);
- expand_end_loop (); ;
- break;}
-case 362:
-#line 1778 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- c_expand_start_case (yyvsp[-1].ttype);
- position_after_white_space (); ;
- break;}
-case 363:
-#line 1783 "objc-parse.y"
-{ expand_end_case (yyvsp[-3].ttype); ;
- break;}
-case 364:
-#line 1785 "objc-parse.y"
-{ tree break_stmt = build_break_stmt ();
- stmt_count++;
- genrtl_break_stmt (); ;
- break;}
-case 365:
-#line 1789 "objc-parse.y"
-{ tree continue_stmt = build_continue_stmt ();
- stmt_count++;
- genrtl_continue_stmt (); ;
- break;}
-case 366:
-#line 1793 "objc-parse.y"
-{ tree return_stmt = build_return_stmt (NULL_TREE);
- stmt_count++;
- genrtl_return_stmt (RETURN_EXPR(return_stmt)); ;
- break;}
-case 367:
-#line 1797 "objc-parse.y"
-{ tree return_stmt = build_return_stmt (yyvsp[-1].ttype);
- stmt_count++;
- genrtl_return_stmt (RETURN_EXPR(return_stmt)); ;
- break;}
-case 368:
-#line 1801 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-7].filename, yyvsp[-6].lineno);
- STRIP_NOPS (yyvsp[-2].ttype);
- if ((TREE_CODE (yyvsp[-2].ttype) == ADDR_EXPR
- && TREE_CODE (TREE_OPERAND (yyvsp[-2].ttype, 0)) == STRING_CST)
- || TREE_CODE (yyvsp[-2].ttype) == STRING_CST)
- expand_asm (yyvsp[-2].ttype);
- else
- error ("argument of `asm' is not a constant string"); ;
- break;}
-case 369:
-#line 1812 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-9].filename, yyvsp[-8].lineno);
- c_expand_asm_operands (yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE, NULL_TREE,
- yyvsp[-6].ttype == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); ;
- break;}
-case 370:
-#line 1819 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-11].filename, yyvsp[-10].lineno);
- c_expand_asm_operands (yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype, NULL_TREE,
- yyvsp[-8].ttype == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); ;
- break;}
-case 371:
-#line 1827 "objc-parse.y"
-{ stmt_count++;
- emit_line_note (yyvsp[-13].filename, yyvsp[-12].lineno);
- c_expand_asm_operands (yyvsp[-8].ttype, yyvsp[-6].ttype, yyvsp[-4].ttype, yyvsp[-2].ttype,
- yyvsp[-10].ttype == ridpointers[(int)RID_VOLATILE],
- input_filename, lineno); ;
- break;}
-case 372:
-#line 1833 "objc-parse.y"
-{ tree decl;
- stmt_count++;
- emit_line_note (yyvsp[-4].filename, yyvsp[-3].lineno);
- decl = lookup_label (yyvsp[-1].ttype);
- if (decl != 0)
- {
- TREE_USED (decl) = 1;
- expand_goto (decl);
- }
- ;
- break;}
-case 373:
-#line 1844 "objc-parse.y"
-{ if (pedantic)
- pedwarn ("ANSI C forbids `goto *expr;'");
- stmt_count++;
- emit_line_note (yyvsp[-5].filename, yyvsp[-4].lineno);
- expand_computed_goto (convert (ptr_type_node, yyvsp[-1].ttype)); ;
- break;}
-case 376:
-#line 1859 "objc-parse.y"
-{
- /* The value returned by this action is */
- /* 1 if everything is OK */
- /* 0 in case of error or already bound iterator */
-
- yyval.itype = 0;
- if (TREE_CODE (yyvsp[-1].ttype) != VAR_DECL)
- error ("invalid `for (ITERATOR)' syntax");
- else if (! ITERATOR_P (yyvsp[-1].ttype))
- error ("`%s' is not an iterator",
- IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
- else if (ITERATOR_BOUND_P (yyvsp[-1].ttype))
- error ("`for (%s)' inside expansion of same iterator",
- IDENTIFIER_POINTER (DECL_NAME (yyvsp[-1].ttype)));
- else
- {
- yyval.itype = 1;
- iterator_for_loop_start (yyvsp[-1].ttype);
- }
- ;
- break;}
-case 377:
-#line 1880 "objc-parse.y"
-{
- if (yyvsp[-1].itype)
- iterator_for_loop_end (yyvsp[-3].ttype);
- ;
- break;}
-case 378:
-#line 1911 "objc-parse.y"
-{ tree case_label_tree = build_case_label (yyvsp[-1].ttype, NULL_TREE);
- stmt_count++;
- genrtl_case_label(CASE_LOW(case_label_tree), CASE_HIGH(case_label_tree));
- position_after_white_space ();
- ;
- break;}
-case 379:
-#line 1917 "objc-parse.y"
-{ tree case_label_tree = build_case_label (yyvsp[-3].ttype, yyvsp[-1].ttype);
- stmt_count++;
- genrtl_case_label(CASE_LOW(case_label_tree), CASE_HIGH(case_label_tree));
- position_after_white_space ();
- ;
- break;}
-case 380:
-#line 1923 "objc-parse.y"
-{ tree case_label_tree = build_case_label (NULL_TREE, NULL_TREE);
- stmt_count++;
- genrtl_case_label(CASE_LOW(case_label_tree), CASE_HIGH(case_label_tree));
- position_after_white_space ();
- ;
- break;}
-case 381:
-#line 1929 "objc-parse.y"
-{ tree label = define_label (input_filename, lineno, yyvsp[-2].ttype);
- stmt_count++;
- emit_nop ();
- if (label)
- {
- expand_label (label);
- decl_attributes (label, yyvsp[0].ttype, NULL_TREE);
- }
- position_after_white_space (); ;
- break;}
-case 382:
-#line 1944 "objc-parse.y"
-{ emit_line_note (input_filename, lineno);
- yyval.ttype = NULL_TREE; ;
- break;}
-case 383:
-#line 1947 "objc-parse.y"
-{ emit_line_note (input_filename, lineno); ;
- break;}
-case 384:
-#line 1952 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 386:
-#line 1959 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 389:
-#line 1966 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, yyvsp[0].ttype); ;
- break;}
-case 390:
-#line 1971 "objc-parse.y"
-{ yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype); ;
- break;}
-case 391:
-#line 1976 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), NULL_TREE); ;
- break;}
-case 392:
-#line 1978 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, combine_strings (yyvsp[0].ttype), yyvsp[-2].ttype); ;
- break;}
-case 393:
-#line 1984 "objc-parse.y"
-{ pushlevel (0);
- clear_parm_order ();
- declare_parm_level (0); ;
- break;}
-case 394:
-#line 1988 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- parmlist_tags_warning ();
- poplevel (0, 0, 0); ;
- break;}
-case 396:
-#line 1996 "objc-parse.y"
-{ tree parm;
- if (pedantic)
- pedwarn ("ANSI C forbids forward parameter declarations");
- /* Mark the forward decls as such. */
- for (parm = getdecls (); parm; parm = TREE_CHAIN (parm))
- TREE_ASM_WRITTEN (parm) = 1;
- clear_parm_order (); ;
- break;}
-case 397:
-#line 2004 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype; ;
- break;}
-case 398:
-#line 2006 "objc-parse.y"
-{ yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, NULL_TREE); ;
- break;}
-case 399:
-#line 2012 "objc-parse.y"
-{ yyval.ttype = get_parm_info (0); ;
- break;}
-case 400:
-#line 2014 "objc-parse.y"
-{ yyval.ttype = get_parm_info (0);
- /* Gcc used to allow this as an extension. However, it does
- not work for all targets, and thus has been disabled.
- Also, since func (...) and func () are indistinguishable,
- it caused problems with the code in expand_builtin which
- tries to verify that BUILT_IN_NEXT_ARG is being used
- correctly. */
- error ("ANSI C requires a named argument before `...'");
- ;
- break;}
-case 401:
-#line 2024 "objc-parse.y"
-{ yyval.ttype = get_parm_info (1); ;
- break;}
-case 402:
-#line 2026 "objc-parse.y"
-{ yyval.ttype = get_parm_info (0); ;
- break;}
-case 403:
-#line 2031 "objc-parse.y"
-{ push_parm_decl (yyvsp[0].ttype); ;
- break;}
-case 404:
-#line 2033 "objc-parse.y"
-{ push_parm_decl (yyvsp[0].ttype); ;
- break;}
-case 405:
-#line 2040 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 406:
-#line 2048 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 407:
-#line 2056 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 408:
-#line 2064 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 409:
-#line 2073 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype));
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 410:
-#line 2086 "objc-parse.y"
-{ pushlevel (0);
- clear_parm_order ();
- declare_parm_level (1); ;
- break;}
-case 411:
-#line 2090 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- parmlist_tags_warning ();
- poplevel (0, 0, 0); ;
- break;}
-case 413:
-#line 2098 "objc-parse.y"
-{ tree t;
- for (t = yyvsp[-1].ttype; t; t = TREE_CHAIN (t))
- if (TREE_VALUE (t) == NULL_TREE)
- error ("`...' in old-style identifier list");
- yyval.ttype = tree_cons (NULL_TREE, NULL_TREE, yyvsp[-1].ttype); ;
- break;}
-case 414:
-#line 2108 "objc-parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 415:
-#line 2110 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 416:
-#line 2116 "objc-parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 417:
-#line 2118 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 418:
-#line 2123 "objc-parse.y"
-{ yyval.ttype = SAVE_WARN_FLAGS();
- pedantic = 0;
- warn_pointer_arith = 0; ;
- break;}
-case 424:
-#line 2137 "objc-parse.y"
-{
- if (objc_implementation_context)
- {
- finish_class (objc_implementation_context);
- objc_ivar_chain = NULL_TREE;
- objc_implementation_context = NULL_TREE;
- }
- else
- warning ("`@end' must appear in an implementation context");
- ;
- break;}
-case 425:
-#line 2152 "objc-parse.y"
-{ yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype); ;
- break;}
-case 426:
-#line 2154 "objc-parse.y"
-{ yyval.ttype = chainon (yyvsp[-2].ttype, build_tree_list (NULL_TREE, yyvsp[0].ttype)); ;
- break;}
-case 427:
-#line 2159 "objc-parse.y"
-{
- objc_declare_class (yyvsp[-1].ttype);
- ;
- break;}
-case 428:
-#line 2165 "objc-parse.y"
-{
- objc_declare_alias (yyvsp[-2].ttype, yyvsp[-1].ttype);
- ;
- break;}
-case 429:
-#line 2171 "objc-parse.y"
-{
- objc_interface_context = objc_ivar_context
- = start_class (CLASS_INTERFACE_TYPE, yyvsp[-2].ttype, NULL_TREE, yyvsp[-1].ttype);
- objc_public_flag = 0;
- ;
- break;}
-case 430:
-#line 2177 "objc-parse.y"
-{
- continue_class (objc_interface_context);
- ;
- break;}
-case 431:
-#line 2182 "objc-parse.y"
-{
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 432:
-#line 2188 "objc-parse.y"
-{
- objc_interface_context
- = start_class (CLASS_INTERFACE_TYPE, yyvsp[-1].ttype, NULL_TREE, yyvsp[0].ttype);
- continue_class (objc_interface_context);
- ;
- break;}
-case 433:
-#line 2195 "objc-parse.y"
-{
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 434:
-#line 2201 "objc-parse.y"
-{
- objc_interface_context = objc_ivar_context
- = start_class (CLASS_INTERFACE_TYPE, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[-1].ttype);
- objc_public_flag = 0;
- ;
- break;}
-case 435:
-#line 2207 "objc-parse.y"
-{
- continue_class (objc_interface_context);
- ;
- break;}
-case 436:
-#line 2212 "objc-parse.y"
-{
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 437:
-#line 2218 "objc-parse.y"
-{
- objc_interface_context
- = start_class (CLASS_INTERFACE_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
- continue_class (objc_interface_context);
- ;
- break;}
-case 438:
-#line 2225 "objc-parse.y"
-{
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 439:
-#line 2231 "objc-parse.y"
-{
- objc_implementation_context = objc_ivar_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-1].ttype, NULL_TREE, NULL_TREE);
- objc_public_flag = 0;
- ;
- break;}
-case 440:
-#line 2237 "objc-parse.y"
-{
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- ;
- break;}
-case 441:
-#line 2243 "objc-parse.y"
-{
- objc_implementation_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[0].ttype, NULL_TREE, NULL_TREE);
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- ;
- break;}
-case 442:
-#line 2251 "objc-parse.y"
-{
- objc_implementation_context = objc_ivar_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE);
- objc_public_flag = 0;
- ;
- break;}
-case 443:
-#line 2257 "objc-parse.y"
-{
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- ;
- break;}
-case 444:
-#line 2263 "objc-parse.y"
-{
- objc_implementation_context
- = start_class (CLASS_IMPLEMENTATION_TYPE, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE);
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- ;
- break;}
-case 445:
-#line 2271 "objc-parse.y"
-{
- objc_interface_context
- = start_class (CATEGORY_INTERFACE_TYPE, yyvsp[-4].ttype, yyvsp[-2].ttype, yyvsp[0].ttype);
- continue_class (objc_interface_context);
- ;
- break;}
-case 446:
-#line 2278 "objc-parse.y"
-{
- finish_class (objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 447:
-#line 2284 "objc-parse.y"
-{
- objc_implementation_context
- = start_class (CATEGORY_IMPLEMENTATION_TYPE, yyvsp[-3].ttype, yyvsp[-1].ttype, NULL_TREE);
- objc_ivar_chain
- = continue_class (objc_implementation_context);
- ;
- break;}
-case 448:
-#line 2294 "objc-parse.y"
-{
- remember_protocol_qualifiers ();
- objc_interface_context
- = start_protocol(PROTOCOL_INTERFACE_TYPE, yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 449:
-#line 2300 "objc-parse.y"
-{
- forget_protocol_qualifiers();
- finish_protocol(objc_interface_context);
- objc_interface_context = NULL_TREE;
- ;
- break;}
-case 450:
-#line 2309 "objc-parse.y"
-{
- yyval.ttype = NULL_TREE;
- ;
- break;}
-case 452:
-#line 2317 "objc-parse.y"
-{
- if (yyvsp[-2].code == LT_EXPR && yyvsp[0].code == GT_EXPR)
- yyval.ttype = yyvsp[-1].ttype;
- else
- YYERROR1;
- ;
- break;}
-case 455:
-#line 2331 "objc-parse.y"
-{ objc_public_flag = 2; ;
- break;}
-case 456:
-#line 2332 "objc-parse.y"
-{ objc_public_flag = 0; ;
- break;}
-case 457:
-#line 2333 "objc-parse.y"
-{ objc_public_flag = 1; ;
- break;}
-case 458:
-#line 2338 "objc-parse.y"
-{
- yyval.ttype = NULL_TREE;
- ;
- break;}
-case 460:
-#line 2343 "objc-parse.y"
-{
- if (pedantic)
- pedwarn ("extra semicolon in struct or union specified");
- ;
- break;}
-case 461:
-#line 2361 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 462:
-#line 2366 "objc-parse.y"
-{ yyval.ttype = yyvsp[0].ttype;
- current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 463:
-#line 2371 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 464:
-#line 2376 "objc-parse.y"
-{ yyval.ttype = NULL_TREE; ;
- break;}
-case 467:
-#line 2383 "objc-parse.y"
-{
- yyval.ttype = add_instance_variable (objc_ivar_context,
- objc_public_flag,
- yyvsp[0].ttype, current_declspecs,
- NULL_TREE);
- ;
- break;}
-case 468:
-#line 2390 "objc-parse.y"
-{
- yyval.ttype = add_instance_variable (objc_ivar_context,
- objc_public_flag,
- yyvsp[-2].ttype, current_declspecs, yyvsp[0].ttype);
- ;
- break;}
-case 469:
-#line 2396 "objc-parse.y"
-{
- yyval.ttype = add_instance_variable (objc_ivar_context,
- objc_public_flag,
- NULL_TREE,
- current_declspecs, yyvsp[0].ttype);
- ;
- break;}
-case 470:
-#line 2406 "objc-parse.y"
-{
- remember_protocol_qualifiers ();
- if (objc_implementation_context)
- objc_inherit_code = CLASS_METHOD_DECL;
- else
- fatal ("method definition not in class context");
- ;
- break;}
-case 471:
-#line 2414 "objc-parse.y"
-{
- forget_protocol_qualifiers ();
- add_class_method (objc_implementation_context, yyvsp[0].ttype);
- start_method_def (yyvsp[0].ttype);
- objc_method_context = yyvsp[0].ttype;
- ;
- break;}
-case 472:
-#line 2421 "objc-parse.y"
-{
- continue_method_def ();
- ;
- break;}
-case 473:
-#line 2425 "objc-parse.y"
-{
- finish_method_def ();
- objc_method_context = NULL_TREE;
- ;
- break;}
-case 474:
-#line 2431 "objc-parse.y"
-{
- remember_protocol_qualifiers ();
- if (objc_implementation_context)
- objc_inherit_code = INSTANCE_METHOD_DECL;
- else
- fatal ("method definition not in class context");
- ;
- break;}
-case 475:
-#line 2439 "objc-parse.y"
-{
- forget_protocol_qualifiers ();
- add_instance_method (objc_implementation_context, yyvsp[0].ttype);
- start_method_def (yyvsp[0].ttype);
- objc_method_context = yyvsp[0].ttype;
- ;
- break;}
-case 476:
-#line 2446 "objc-parse.y"
-{
- continue_method_def ();
- ;
- break;}
-case 477:
-#line 2450 "objc-parse.y"
-{
- finish_method_def ();
- objc_method_context = NULL_TREE;
- ;
- break;}
-case 479:
-#line 2462 "objc-parse.y"
-{yyval.ttype = NULL_TREE; ;
- break;}
-case 484:
-#line 2469 "objc-parse.y"
-{yyval.ttype = NULL_TREE; ;
- break;}
-case 488:
-#line 2479 "objc-parse.y"
-{
- /* Remember protocol qualifiers in prototypes. */
- remember_protocol_qualifiers ();
- objc_inherit_code = CLASS_METHOD_DECL;
- ;
- break;}
-case 489:
-#line 2485 "objc-parse.y"
-{
- /* Forget protocol qualifiers here. */
- forget_protocol_qualifiers ();
- add_class_method (objc_interface_context, yyvsp[0].ttype);
- ;
- break;}
-case 491:
-#line 2493 "objc-parse.y"
-{
- /* Remember protocol qualifiers in prototypes. */
- remember_protocol_qualifiers ();
- objc_inherit_code = INSTANCE_METHOD_DECL;
- ;
- break;}
-case 492:
-#line 2499 "objc-parse.y"
-{
- /* Forget protocol qualifiers here. */
- forget_protocol_qualifiers ();
- add_instance_method (objc_interface_context, yyvsp[0].ttype);
- ;
- break;}
-case 494:
-#line 2509 "objc-parse.y"
-{
- yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-2].ttype, yyvsp[0].ttype, NULL_TREE);
- ;
- break;}
-case 495:
-#line 2514 "objc-parse.y"
-{
- yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[0].ttype, NULL_TREE);
- ;
- break;}
-case 496:
-#line 2519 "objc-parse.y"
-{
- yyval.ttype = build_method_decl (objc_inherit_code, yyvsp[-3].ttype, yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 497:
-#line 2524 "objc-parse.y"
-{
- yyval.ttype = build_method_decl (objc_inherit_code, NULL_TREE, yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 506:
-#line 2554 "objc-parse.y"
-{ current_declspecs = TREE_VALUE (declspec_stack);
- prefix_attributes = TREE_PURPOSE (declspec_stack);
- declspec_stack = TREE_CHAIN (declspec_stack); ;
- break;}
-case 507:
-#line 2558 "objc-parse.y"
-{ shadow_tag (yyvsp[-1].ttype); ;
- break;}
-case 508:
-#line 2560 "objc-parse.y"
-{ pedwarn ("empty declaration"); ;
- break;}
-case 509:
-#line 2565 "objc-parse.y"
-{ push_parm_decl (yyvsp[0].ttype); ;
- break;}
-case 510:
-#line 2567 "objc-parse.y"
-{ push_parm_decl (yyvsp[0].ttype); ;
- break;}
-case 511:
-#line 2575 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype)); ;
- break;}
-case 512:
-#line 2580 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype)); ;
- break;}
-case 513:
-#line 2585 "objc-parse.y"
-{ yyval.ttype = build_tree_list (build_tree_list (current_declspecs,
- yyvsp[-1].ttype),
- build_tree_list (prefix_attributes,
- yyvsp[0].ttype)); ;
- break;}
-case 514:
-#line 2593 "objc-parse.y"
-{
- yyval.ttype = NULL_TREE;
- ;
- break;}
-case 515:
-#line 2597 "objc-parse.y"
-{
- /* oh what a kludge! */
- yyval.ttype = objc_ellipsis_node;
- ;
- break;}
-case 516:
-#line 2602 "objc-parse.y"
-{
- pushlevel (0);
- ;
- break;}
-case 517:
-#line 2606 "objc-parse.y"
-{
- /* returns a tree list node generated by get_parm_info */
- yyval.ttype = yyvsp[0].ttype;
- poplevel (0, 0, 0);
- ;
- break;}
-case 520:
-#line 2621 "objc-parse.y"
-{
- yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 525:
-#line 2634 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 526:
-#line 2635 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 527:
-#line 2636 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 528:
-#line 2637 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 529:
-#line 2638 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 530:
-#line 2639 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 531:
-#line 2640 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 532:
-#line 2641 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 533:
-#line 2642 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 534:
-#line 2643 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 535:
-#line 2644 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 536:
-#line 2645 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 537:
-#line 2646 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 538:
-#line 2647 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 539:
-#line 2648 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 540:
-#line 2649 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 541:
-#line 2650 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 542:
-#line 2651 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 543:
-#line 2652 "objc-parse.y"
-{ yyval.ttype = get_identifier (token_buffer); ;
- break;}
-case 546:
-#line 2658 "objc-parse.y"
-{
- yyval.ttype = build_keyword_decl (yyvsp[-5].ttype, yyvsp[-2].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 547:
-#line 2663 "objc-parse.y"
-{
- yyval.ttype = build_keyword_decl (yyvsp[-2].ttype, NULL_TREE, yyvsp[0].ttype);
- ;
- break;}
-case 548:
-#line 2668 "objc-parse.y"
-{
- yyval.ttype = build_keyword_decl (NULL_TREE, yyvsp[-2].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 549:
-#line 2673 "objc-parse.y"
-{
- yyval.ttype = build_keyword_decl (NULL_TREE, NULL_TREE, yyvsp[0].ttype);
- ;
- break;}
-case 553:
-#line 2686 "objc-parse.y"
-{
- yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 554:
-#line 2694 "objc-parse.y"
-{
- if (TREE_CHAIN (yyvsp[0].ttype) == NULL_TREE)
- /* just return the expr., remove a level of indirection */
- yyval.ttype = TREE_VALUE (yyvsp[0].ttype);
- else
- /* we have a comma expr., we will collapse later */
- yyval.ttype = yyvsp[0].ttype;
- ;
- break;}
-case 555:
-#line 2706 "objc-parse.y"
-{
- yyval.ttype = build_tree_list (yyvsp[-2].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 556:
-#line 2710 "objc-parse.y"
-{
- yyval.ttype = build_tree_list (NULL_TREE, yyvsp[0].ttype);
- ;
- break;}
-case 558:
-#line 2718 "objc-parse.y"
-{
- yyval.ttype = get_class_reference (yyvsp[0].ttype);
- ;
- break;}
-case 559:
-#line 2725 "objc-parse.y"
-{ objc_receiver_context = 1; ;
- break;}
-case 560:
-#line 2727 "objc-parse.y"
-{ objc_receiver_context = 0; ;
- break;}
-case 561:
-#line 2729 "objc-parse.y"
-{
- yyval.ttype = build_tree_list (yyvsp[-3].ttype, yyvsp[-1].ttype);
- ;
- break;}
-case 565:
-#line 2742 "objc-parse.y"
-{
- yyval.ttype = chainon (yyvsp[-1].ttype, yyvsp[0].ttype);
- ;
- break;}
-case 566:
-#line 2749 "objc-parse.y"
-{
- yyval.ttype = build_tree_list (yyvsp[-1].ttype, NULL_TREE);
- ;
- break;}
-case 567:
-#line 2753 "objc-parse.y"
-{
- yyval.ttype = build_tree_list (NULL_TREE, NULL_TREE);
- ;
- break;}
-case 568:
-#line 2760 "objc-parse.y"
-{
- yyval.ttype = yyvsp[-1].ttype;
- ;
- break;}
-case 569:
-#line 2767 "objc-parse.y"
-{
- yyval.ttype = yyvsp[-1].ttype;
- ;
- break;}
-case 570:
-#line 2776 "objc-parse.y"
-{
- yyval.ttype = groktypename (yyvsp[-1].ttype);
- ;
- break;}
-}
- /* the action file gets copied in in place of this dollarsign */
-#line 543 "/usr/share/misc/bison.simple"
-
- yyvsp -= yylen;
- yyssp -= yylen;
-#ifdef YYLSP_NEEDED
- yylsp -= yylen;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
-#endif
-
- *++yyvsp = yyval;
-
-#ifdef YYLSP_NEEDED
- yylsp++;
- if (yylen == 0)
- {
- yylsp->first_line = yylloc.first_line;
- yylsp->first_column = yylloc.first_column;
- yylsp->last_line = (yylsp-1)->last_line;
- yylsp->last_column = (yylsp-1)->last_column;
- yylsp->text = 0;
- }
- else
- {
- yylsp->last_line = (yylsp+yylen-1)->last_line;
- yylsp->last_column = (yylsp+yylen-1)->last_column;
- }
-#endif
-
- /* Now "shift" the result of the reduction.
- Determine what state that goes to,
- based on the state we popped back to
- and the rule number reduced by. */
-
- yyn = yyr1[yyn];
-
- yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
- if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
- yystate = yytable[yystate];
- else
- yystate = yydefgoto[yyn - YYNTBASE];
-
- goto yynewstate;
-
-yyerrlab: /* here on detecting error */
-
- if (! yyerrstatus)
- /* If not already recovering from an error, report this error. */
- {
- ++yynerrs;
-
-#ifdef YYERROR_VERBOSE
- yyn = yypact[yystate];
-
- if (yyn > YYFLAG && yyn < YYLAST)
- {
- int size = 0;
- char *msg;
- int x, count;
-
- count = 0;
- /* Start X at -yyn if nec to avoid negative indexes in yycheck. */
- for (x = (yyn < 0 ? -yyn : 0);
- x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- size += strlen(yytname[x]) + 15, count++;
- msg = (char *) malloc(size + 15);
- if (msg != 0)
- {
- strcpy(msg, "parse error");
-
- if (count < 5)
- {
- count = 0;
- for (x = (yyn < 0 ? -yyn : 0);
- x < (sizeof(yytname) / sizeof(char *)); x++)
- if (yycheck[x + yyn] == x)
- {
- strcat(msg, count == 0 ? ", expecting `" : " or `");
- strcat(msg, yytname[x]);
- strcat(msg, "'");
- count++;
- }
- }
- yyerror(msg);
- free(msg);
- }
- else
- yyerror ("parse error; also virtual memory exceeded");
- }
- else
-#endif /* YYERROR_VERBOSE */
- yyerror("parse error");
- }
-
- goto yyerrlab1;
-yyerrlab1: /* here on error raised explicitly by an action */
-
- if (yyerrstatus == 3)
- {
- /* if just tried and failed to reuse lookahead token after an error, discard it. */
-
- /* return failure if at end of input */
- if (yychar == YYEOF)
- YYABORT;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
-#endif
-
- yychar = YYEMPTY;
- }
-
- /* Else will try to reuse lookahead token
- after shifting the error token. */
-
- yyerrstatus = 3; /* Each real token shifted decrements this */
-
- goto yyerrhandle;
-
-yyerrdefault: /* current state does not do anything special for the error token. */
-
-#if 0
- /* This is wrong; only states that explicitly want error tokens
- should shift them. */
- yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/
- if (yyn) goto yydefault;
-#endif
-
-yyerrpop: /* pop the current state because it cannot handle the error token */
-
- if (yyssp == yyss) YYABORT;
- yyvsp--;
- yystate = *--yyssp;
-#ifdef YYLSP_NEEDED
- yylsp--;
-#endif
-
-#if YYDEBUG != 0
- if (yydebug)
- {
- short *ssp1 = yyss - 1;
- fprintf (stderr, "Error: state stack now");
- while (ssp1 != yyssp)
- fprintf (stderr, " %d", *++ssp1);
- fprintf (stderr, "\n");
- }
-#endif
-
-yyerrhandle:
-
- yyn = yypact[yystate];
- if (yyn == YYFLAG)
- goto yyerrdefault;
-
- yyn += YYTERROR;
- if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
- goto yyerrdefault;
-
- yyn = yytable[yyn];
- if (yyn < 0)
- {
- if (yyn == YYFLAG)
- goto yyerrpop;
- yyn = -yyn;
- goto yyreduce;
- }
- else if (yyn == 0)
- goto yyerrpop;
-
- if (yyn == YYFINAL)
- YYACCEPT;
-
-#if YYDEBUG != 0
- if (yydebug)
- fprintf(stderr, "Shifting error token, ");
-#endif
-
- *++yyvsp = yylval;
-#ifdef YYLSP_NEEDED
- *++yylsp = yylloc;
-#endif
-
- yystate = yyn;
- goto yynewstate;
-
- yyacceptlab:
- /* YYACCEPT comes here. */
- if (yyfree_stacks)
- {
- free (yyss);
- free (yyvs);
-#ifdef YYLSP_NEEDED
- free (yyls);
-#endif
- }
- return 0;
-
- yyabortlab:
- /* YYABORT comes here. */
- if (yyfree_stacks)
- {
- free (yyss);
- free (yyvs);
-#ifdef YYLSP_NEEDED
- free (yyls);
-#endif
- }
- return 1;
-}
-#line 2781 "objc-parse.y"
-