File: a60-ptab.c

package info (click to toggle)
nase-a60 0.20a-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,544 kB
  • ctags: 1,045
  • sloc: ansic: 10,347; yacc: 965; lex: 336; sh: 325; makefile: 215
file content (2302 lines) | stat: -rw-r--r-- 67,345 bytes parent folder | download | duplicates (3)
1
2
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302

/*  A Bison parser, made from a60-parse.y
 by  GNU Bison version 1.25
  */

#define YYBISON 1  /* Identify Bison output.  */

#define	TCOMMENT	258
#define	TTEN	259
#define	TBEGIN	260
#define	TEND	261
#define	TGOTO	262
#define	TFOR	263
#define	TDO	264
#define	TWHILE	265
#define	TSTEP	266
#define	TUNTIL	267
#define	TIF	268
#define	TTHEN	269
#define	TELSE	270
#define	TSWITCH	271
#define	TPROC	272
#define	TVALUE	273
#define	TCODE	274
#define	TTRUE	275
#define	TFALSE	276
#define	TINTEGER	277
#define	TREAL	278
#define	TBOOL	279
#define	TLABEL	280
#define	TOWN	281
#define	TARRAY	282
#define	TSTRING	283
#define	TPOW	284
#define	TDIV	285
#define	TASSIGN	286
#define	TLESS	287
#define	TNOTGREATER	288
#define	TEQUAL	289
#define	TNOTLESS	290
#define	TGREATER	291
#define	TNOTEQUAL	292
#define	TAND	293
#define	TOR	294
#define	TNOT	295
#define	TIMPL	296
#define	TEQUIV	297
#define	INUM	298
#define	RNUM	299
#define	NAME	300
#define	STRING	301
#define	UNARY	302

#line 37 "a60-parse.y"

#include "comm.h"
#include "a60.h"
#include "util.h"
#include "tree.h"
#include "run.h"
#include "bltin.h"


/* number of errors found. */
int nerrors = 0;

/* flag for unary minus parsed. */
int unary_minus = 0;

/* force code for parser debugging to be included: */
#ifdef PARSEDEBUG
#define YYDEBUG	1
#endif

/*** in future: #ifdef YYBISON ***/
#ifndef YYBYACC

#ifdef ALLOCA_MISSING
/*
 * if no alloca() call is avail, provide yyoverflow to catch bison
 * stack-expanding.
 * its somewhat confusing: yyoverflow is expected to be defined, but
 * used with ifdef'd parameters, so it has to be a function.
 * [see below the grammer for a60_yyoverflow ()]
 */

/* to be defined: */
#define yyoverflow 	a60_yyoverflow
/* forward: */
static void a60_yyoverflow ();
#endif /* ALLOCA_MISSING */
#endif /* ! YYBISON */


#line 85 "a60-parse.y"
typedef union {
	long itype;
	double rtype;
	char *str;
	TREE *tree;
	SYMTAB *sym;
	EXPR *expr;
	BOUND *bound;
	LHELM *lhelm;
	MINDEX *mindex;
	FORELM *forelm;
	FORSTMT *forstmt;
	OWNTYPE otype;
	ENUM type_tag typ;
} YYSTYPE;
#include <stdio.h>

#ifndef __cplusplus
#ifndef __STDC__
#define const
#endif
#endif



#define	YYFINAL		276
#define	YYFLAG		-32768
#define	YYNTBASE	59

#define YYTRANSLATE(x) ((unsigned)(x) <= 302 ? yytranslate[x] : 138)

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,     2,     2,     2,     2,     2,     2,     2,    55,
    56,    49,    47,    54,    48,     2,    50,     2,     2,     2,
     2,     2,     2,     2,     2,     2,     2,    58,    57,     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,
    52,     2,    53,     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,     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,     2,     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,    41,    42,    43,    44,    45,
    46,    51
};

#if YYDEBUG != 0
static const short yyprhs[] = {     0,
     0,     1,     2,     5,     7,     9,    11,    13,    15,    20,
    22,    26,    28,    33,    35,    40,    43,    45,    49,    53,
    57,    61,    65,    69,    73,    77,    81,    85,    88,    90,
    92,    95,    99,   103,   107,   111,   115,   119,   121,   123,
   125,   127,   129,   133,   135,   137,   142,   144,   146,   150,
   155,   157,   159,   161,   164,   166,   169,   173,   174,   178,
   179,   183,   187,   189,   192,   196,   198,   200,   202,   204,
   206,   208,   210,   213,   215,   217,   219,   221,   223,   226,
   228,   230,   233,   236,   239,   240,   242,   246,   249,   252,
   255,   259,   262,   265,   271,   273,   277,   279,   285,   289,
   292,   293,   297,   299,   303,   305,   310,   312,   314,   316,
   318,   320,   322,   324,   327,   329,   332,   334,   338,   340,
   342,   344,   347,   351,   353,   357,   362,   366,   368,   372,
   376,   381,   383,   387,   390,   391,   393,   395,   397,   401,
   407,   408,   410,   414,   419,   421,   423,   425,   428,   430,
   432,   434,   437,   438,   442,   444,   448,   449,   453,   455,
   459,   461,   464,   466,   468,   470,   473,   476,   478,   482,
   486
};

static const short yyrhs[] = {    -1,
     0,    60,    77,     0,    20,     0,    21,     0,    45,     0,
    46,     0,    62,     0,    62,    52,    65,    53,     0,    66,
     0,    65,    54,    66,     0,    68,     0,    62,    55,   105,
    56,     0,    69,     0,    98,    69,    15,    68,     0,    47,
    70,     0,    70,     0,    70,    49,    70,     0,    70,    50,
    70,     0,    70,    47,    70,     0,    70,    48,    70,     0,
    70,    29,    70,     0,    70,    30,    70,     0,    70,    42,
    70,     0,    70,    41,    70,     0,    70,    39,    70,     0,
    70,    38,    70,     0,    40,    70,     0,    71,     0,    72,
     0,    48,    72,     0,    70,    32,    70,     0,    70,    33,
    70,     0,    70,    34,    70,     0,    70,    35,    70,     0,
    70,    36,    70,     0,    70,    37,    70,     0,    43,     0,
   137,     0,    67,     0,    64,     0,    61,     0,    55,    68,
    56,     0,    68,     0,    75,     0,    98,    75,    15,    74,
     0,   135,     0,    76,     0,    55,    74,    56,     0,    62,
    52,    66,    53,     0,    78,     0,    79,     0,    80,     0,
   134,    78,     0,    81,     0,   134,    79,     0,    83,    57,
    85,     0,     0,     5,    82,    85,     0,     0,     5,    84,
   109,     0,    83,    57,   109,     0,     1,     0,    86,     6,
     0,    86,    57,    85,     0,    87,     0,    96,     0,    99,
     0,    88,     0,    79,     0,    78,     0,    89,     0,   134,
    88,     0,    90,     0,    94,     0,    95,     0,   103,     0,
     1,     0,    92,    91,     0,    68,     0,    93,     0,    92,
    93,     0,    64,    31,     0,     7,    74,     0,     0,    97,
     0,    97,    15,    86,     0,    98,    99,     0,   134,    96,
     0,    98,    87,     0,    13,    73,    14,     0,   100,    86,
     0,   134,    99,     0,     8,    64,    31,   101,     9,     0,
   102,     0,   101,    54,   102,     0,    68,     0,    68,    11,
    68,    12,    68,     0,    68,    10,    73,     0,    62,   104,
     0,     0,    55,   105,    56,     0,   108,     0,   105,   106,
   108,     0,    54,     0,    56,   107,    58,    55,     0,    45,
     0,    63,     0,    68,     0,   110,     0,   114,     0,   119,
     0,   121,     0,   111,   112,     0,   113,     0,    26,   113,
     0,    62,     0,   112,    54,    62,     0,    22,     0,    23,
     0,    24,     0,    27,   115,     0,   111,    27,   115,     0,
   116,     0,   115,    54,   116,     0,    62,    52,   117,    53,
     0,    62,    54,   116,     0,   118,     0,   117,    54,   118,
     0,    68,    58,    68,     0,    16,    62,    31,   120,     0,
    74,     0,   120,    54,    74,     0,   125,   123,     0,     0,
   113,     0,    86,     0,    19,     0,   122,    17,    62,     0,
   124,   131,    57,   129,   126,     0,     0,   127,     0,   128,
   130,    57,     0,   127,   128,   130,    57,     0,    28,     0,
   113,     0,    27,     0,   113,    27,     0,    25,     0,    16,
     0,    17,     0,   113,    17,     0,     0,    18,   130,    57,
     0,    62,     0,   130,    54,    62,     0,     0,    55,   132,
    56,     0,   133,     0,   132,   106,   133,     0,    62,     0,
   135,    58,     0,    62,     0,    43,     0,    43,     0,    47,
    43,     0,    48,    43,     0,    44,     0,    44,     4,   136,
     0,    43,     4,   136,     0,     4,   136,     0
};

#endif

#if YYDEBUG != 0
static const short yyrline[] = { 0,
   165,   171,   177,   196,   198,   206,   214,   226,   231,   241,
   246,   257,   269,   284,   286,   297,   299,   304,   306,   308,
   310,   312,   314,   316,   318,   320,   322,   324,   326,   333,
   342,   349,   351,   353,   355,   357,   359,   364,   370,   376,
   380,   402,   408,   412,   418,   419,   430,   437,   439,   444,
   456,   458,   463,   465,   474,   476,   485,   501,   506,   519,
   524,   528,   533,   538,   540,   554,   556,   558,   563,   565,
   567,   572,   574,   583,   585,   587,   589,   591,   599,   604,
   609,   611,   622,   630,   638,   646,   648,   653,   659,   667,
   676,   684,   692,   700,   710,   712,   723,   731,   741,   756,
   767,   769,   774,   776,   787,   789,   794,   799,   801,   809,
   811,   813,   815,   822,   833,   840,   850,   856,   872,   874,
   876,   884,   889,   897,   899,   907,   917,   932,   934,   945,
   958,   968,   970,   981,   990,   992,   997,   999,  1005,  1019,
  1033,  1035,  1040,  1045,  1054,  1056,  1058,  1060,  1062,  1064,
  1066,  1068,  1073,  1075,  1080,  1084,  1093,  1095,  1100,  1102,
  1110,  1122,  1134,  1136,  1148,  1150,  1152,  1157,  1159,  1161,
  1163
};
#endif


#if YYDEBUG != 0 || defined (YYERROR_VERBOSE)

static const char * const yytname[] = {   "$","error","$undefined.","TCOMMENT",
"TTEN","TBEGIN","TEND","TGOTO","TFOR","TDO","TWHILE","TSTEP","TUNTIL","TIF",
"TTHEN","TELSE","TSWITCH","TPROC","TVALUE","TCODE","TTRUE","TFALSE","TINTEGER",
"TREAL","TBOOL","TLABEL","TOWN","TARRAY","TSTRING","TPOW","TDIV","TASSIGN","TLESS",
"TNOTGREATER","TEQUAL","TNOTLESS","TGREATER","TNOTEQUAL","TAND","TOR","TNOT",
"TIMPL","TEQUIV","INUM","RNUM","NAME","STRING","'+'","'-'","'*'","'/'","UNARY",
"'['","']'","','","'('","')'","';'","':'","a60program","@1","logical_val","identifier",
"string","variable","subscr_list","subscr_expr","func_desig","arith_expr","simple_expr",
"mix_expr","relation","mix_prim","bool_expr","design_expr","simp_dexpr","switch_des",
"program","block","comp_stmt","unlab_block","unlab_comp","@2","block_head","@3",
"comp_tail","stmt","uncond_stmt","basic_stmt","unlab_basic_stmt","assign_stmt",
"right_part","left_part_list","left_part","goto_stmt","dummy_stmt","cond_stmt",
"if_stmt","if_clause","for_stmt","for_clause","for_list","for_lelm","proc_stmt",
"act_parmpart","act_parmlist","parm_delim","letter_string","act_parm","decl",
"type_decl","loc_or_own","type_list","type","array_decl","array_list","array_seg",
"bound_pair_list","bound_pair","switch_decl","switch_list","proc_decl","pd_proc_type",
"pd_proc_body","pd_proc_hhead","pd_proc_head","pd_spec_part","pd_spec_idlist",
"pd_spec","pd_val_part","pd_ident_list","pd_form_parmpart","pd_form_parmlist",
"pd_form_parm","tlabel","label","signed_inum","real_value", NULL
};
#endif

static const short yyr1[] = {     0,
    59,    60,    59,    61,    61,    62,    63,    64,    64,    65,
    65,    66,    67,    68,    68,    69,    69,    70,    70,    70,
    70,    70,    70,    70,    70,    70,    70,    70,    70,    70,
    70,    71,    71,    71,    71,    71,    71,    72,    72,    72,
    72,    72,    72,    73,    74,    74,    75,    75,    75,    76,
    77,    77,    78,    78,    79,    79,    80,    82,    81,    84,
    83,    83,    83,    85,    85,    86,    86,    86,    87,    87,
    87,    88,    88,    89,    89,    89,    89,    89,    90,    91,
    92,    92,    93,    94,    95,    96,    96,    96,    96,    97,
    98,    99,    99,   100,   101,   101,   102,   102,   102,   103,
   104,   104,   105,   105,   106,   106,   107,   108,   108,   109,
   109,   109,   109,   110,   111,   111,   112,   112,   113,   113,
   113,   114,   114,   115,   115,   116,   116,   117,   117,   118,
   119,   120,   120,   121,   122,   122,   123,   123,   124,   125,
   126,   126,   127,   127,   128,   128,   128,   128,   128,   128,
   128,   128,   129,   129,   130,   130,   131,   131,   132,   132,
   133,   134,   135,   135,   136,   136,   136,   137,   137,   137,
   137
};

static const short yyr2[] = {     0,
     0,     0,     2,     1,     1,     1,     1,     1,     4,     1,
     3,     1,     4,     1,     4,     2,     1,     3,     3,     3,
     3,     3,     3,     3,     3,     3,     3,     2,     1,     1,
     2,     3,     3,     3,     3,     3,     3,     1,     1,     1,
     1,     1,     3,     1,     1,     4,     1,     1,     3,     4,
     1,     1,     1,     2,     1,     2,     3,     0,     3,     0,
     3,     3,     1,     2,     3,     1,     1,     1,     1,     1,
     1,     1,     2,     1,     1,     1,     1,     1,     2,     1,
     1,     2,     2,     2,     0,     1,     3,     2,     2,     2,
     3,     2,     2,     5,     1,     3,     1,     5,     3,     2,
     0,     3,     1,     3,     1,     4,     1,     1,     1,     1,
     1,     1,     1,     2,     1,     2,     1,     3,     1,     1,
     1,     2,     3,     1,     3,     4,     3,     1,     3,     3,
     4,     1,     3,     2,     0,     1,     1,     1,     3,     5,
     0,     1,     3,     4,     1,     1,     1,     2,     1,     1,
     1,     2,     0,     3,     1,     3,     0,     3,     1,     3,
     1,     2,     1,     1,     1,     2,     2,     1,     3,     3,
     2
};

static const short yydefact[] = {     2,
     0,    63,    58,   164,     6,   163,     3,    51,    52,    53,
    55,     0,     0,     0,     0,   135,     0,    54,    56,   162,
    78,     0,     0,     0,   101,     0,    71,    70,    59,     0,
    66,    69,    72,    74,     0,    81,    75,    76,    67,    86,
     0,    68,     0,    77,     0,     0,   119,   120,   121,     0,
     0,    61,   110,     0,   115,   111,   112,   113,     0,   157,
     0,    57,    62,     0,   163,    84,    45,    48,     0,    47,
     8,     0,     0,     4,     5,     0,    38,   168,     0,     0,
     0,    42,     8,    41,    40,    44,    14,    17,    29,    30,
     0,     0,    39,     0,     0,   100,    83,    64,     0,    41,
    80,    79,    82,     0,    90,    88,     0,    92,    73,    89,
    93,     0,   116,     0,   122,   124,     0,   117,   114,     0,
     0,     0,   138,   137,   134,     0,     0,     0,     0,   165,
     0,     0,   171,    28,     0,     0,    16,    31,     0,     0,
     0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
     0,     0,     0,     0,     0,     0,    91,     0,     0,    10,
    12,     7,   108,   109,     0,   103,    65,    87,     0,     0,
     0,     0,   123,     0,   139,   161,     0,   159,   153,    49,
     0,     0,    97,     0,    95,   166,   167,   170,   169,    43,
     0,    22,    23,    32,    33,    34,    35,    36,    37,    27,
    26,    25,    24,    20,    21,    18,    19,     0,     9,     0,
   105,   102,     0,   132,   131,     0,     0,   128,   127,   125,
   118,   158,     0,     0,   141,    50,    46,     0,     0,    94,
     0,    13,    15,    11,   107,     0,   104,     0,     0,   126,
     0,   160,   155,     0,   150,   151,   149,   147,   145,   146,
   140,   142,     0,    99,     0,    96,     0,   133,   130,   129,
     0,   154,   152,   148,     0,     0,     0,   106,   156,     0,
   143,    98,   144,     0,     0,     0
};

static const short yydefgoto[] = {   274,
     1,    82,    83,   163,    84,   159,   160,    85,   161,    87,
    88,    89,    90,    91,    66,    67,    68,     7,    27,    28,
    10,    11,    15,    12,    16,    29,    30,    31,    32,    33,
    34,   102,    35,    36,    37,    38,    39,    40,    92,    42,
    43,   184,   185,    44,    96,   165,   213,   236,   166,    52,
    53,    54,   119,    55,    56,   115,   116,   217,   218,    57,
   215,    58,    59,   125,    60,    61,   251,   252,   253,   225,
   244,   122,   177,   178,    45,    14,   133,    93
};

static const short yypact[] = {    28,
    82,-32768,   336,-32768,-32768,-32768,-32768,-32768,-32768,-32768,
-32768,    22,    82,   -23,    24,   235,   281,-32768,-32768,-32768,
    37,    92,    11,   302,    30,    44,-32768,-32768,-32768,    20,
-32768,-32768,-32768,-32768,   302,-32768,-32768,-32768,-32768,    69,
   135,-32768,    24,-32768,    24,    11,-32768,-32768,-32768,   100,
    11,-32768,-32768,    21,   115,-32768,-32768,-32768,   146,    98,
    57,-32768,-32768,    92,   117,-32768,-32768,-32768,   112,-32768,
   122,    68,   136,-32768,-32768,   145,   178,   183,   145,   191,
   302,-32768,    19,-32768,-32768,-32768,-32768,   359,-32768,-32768,
   180,   335,-32768,   302,   289,-32768,-32768,-32768,    24,    44,
-32768,-32768,-32768,    24,-32768,-32768,   135,-32768,-32768,-32768,
-32768,   171,-32768,   -13,   151,-32768,    11,-32768,   154,    11,
    11,   159,-32768,-32768,-32768,   165,   302,   209,   302,-32768,
   182,   184,-32768,-32768,   136,   136,   359,-32768,   170,   289,
   145,   145,   145,   145,   145,   145,   145,   145,   145,   145,
   145,   145,   145,   145,   145,   145,-32768,   213,    85,-32768,
-32768,-32768,-32768,-32768,    77,-32768,-32768,-32768,    92,   302,
    11,    11,   151,    11,-32768,-32768,   104,-32768,   224,-32768,
   201,    92,   134,    18,-32768,-32768,-32768,-32768,-32768,-32768,
   105,-32768,   226,   200,   200,   200,   200,   200,   200,   337,
   425,   403,   381,    80,    80,   226,   226,   302,-32768,   302,
-32768,   208,   289,-32768,   202,   205,   143,-32768,-32768,-32768,
-32768,   208,    11,    11,   216,-32768,-32768,   302,   302,-32768,
   302,   208,-32768,-32768,-32768,   207,-32768,    92,   302,-32768,
   302,-32768,-32768,    39,-32768,-32768,-32768,-32768,-32768,    16,
-32768,   216,    11,-32768,   271,-32768,   229,-32768,-32768,-32768,
    11,-32768,-32768,-32768,    11,    47,   302,-32768,-32768,    58,
-32768,-32768,-32768,   285,   290,-32768
};

static const short yypgoto[] = {-32768,
-32768,-32768,    -1,-32768,   111,-32768,  -121,-32768,   -22,   199,
   125,-32768,   212,    67,   -61,   227,-32768,-32768,     4,    10,
-32768,-32768,-32768,-32768,-32768,    -8,    -9,   258,   -27,-32768,
-32768,-32768,-32768,   265,-32768,-32768,   256,-32768,    -7,   -21,
-32768,-32768,    81,-32768,-32768,   173,   137,-32768,   103,   294,
-32768,-32768,-32768,   -49,-32768,   203,    27,-32768,    76,-32768,
-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,    66,-32768,
  -175,-32768,-32768,    96,     6,   -18,    78,-32768
};


#define	YYLAST		475


static const short yytable[] = {     6,
   113,    86,   126,    70,     8,   181,    13,    41,    62,    41,
     9,     6,   101,    25,    69,    25,    18,   109,    13,   106,
    65,    71,    19,   111,    21,    98,   230,    -1,     3,   -85,
    22,    23,   263,   108,    20,    41,    24,    41,   170,    25,
   171,    25,   264,    25,   112,    70,   107,   117,    18,   114,
    70,   124,   118,    41,    19,     5,    69,    21,   139,    25,
    -8,     3,    65,    22,    23,     5,     4,    65,     5,    24,
    94,   231,   164,   140,    97,   123,    99,   266,    17,   109,
   -85,    94,     2,   104,    95,   111,     3,  -163,   234,   270,
   167,    41,   261,   -63,   168,   262,    41,    25,   129,     4,
   261,     5,    25,   271,    24,    25,   183,   214,   141,   142,
    18,   261,   107,   -85,   273,   114,    19,   164,   175,   176,
   227,    47,    48,    49,     4,    26,     5,    26,   155,   156,
   211,  -136,   212,    72,     4,    21,     5,   209,   210,     3,
   -85,    22,    23,   228,   229,   100,    64,   216,    73,   -85,
    70,    26,   121,    26,     4,    26,     5,   211,   211,   222,
   232,    69,   120,    70,    74,    75,    64,    65,   127,   114,
   114,    26,   221,    94,    69,   250,   258,     4,   130,     5,
    65,   135,   131,   132,    76,   233,   136,    77,    78,     5,
   164,   -85,    80,   157,    73,   240,   241,   219,   220,    81,
   134,   169,   250,   137,   172,    86,   255,   174,   183,    26,
    74,    75,   188,   189,    26,   179,   259,    26,   216,    70,
   180,   176,   243,   182,   186,   190,   187,   208,   141,   142,
    69,   245,   246,    77,    78,     5,    65,    47,    48,    49,
   247,   224,   248,   249,   272,    81,   153,   154,   155,   156,
    46,   243,   235,   226,   141,   238,    47,    48,    49,   269,
    50,    51,   239,   243,   257,   192,   193,   194,   195,   196,
   197,   198,   199,   200,   201,   202,   203,   204,   205,   206,
   207,    21,   267,   268,   275,     3,   -85,    22,    23,   276,
   158,   138,    73,    24,   254,   128,    46,  -135,   105,   103,
   110,    24,    47,    48,    49,    73,    50,    51,    74,    75,
    63,   256,   191,   223,    24,   237,   260,   265,   242,   173,
     0,    74,    75,     4,     0,     5,     0,     0,    76,     0,
     0,    77,    78,     5,   162,    79,    80,   -85,    73,     0,
     0,    76,     0,    81,    77,    78,     5,     0,    79,    80,
     0,   -60,   -60,     0,    74,    75,    81,   -60,   -60,   -60,
     0,   -60,   -60,     0,     0,   141,   142,     0,   143,   144,
   145,   146,   147,   148,    76,     0,     0,    77,    78,     5,
     0,    79,    80,   153,   154,   155,   156,   141,   142,    81,
   143,   144,   145,   146,   147,   148,   149,   150,     0,   151,
   152,     0,     0,     0,     0,   153,   154,   155,   156,   141,
   142,     0,   143,   144,   145,   146,   147,   148,   149,   150,
     0,   151,     0,     0,     0,     0,     0,   153,   154,   155,
   156,   141,   142,     0,   143,   144,   145,   146,   147,   148,
   149,   150,     0,     0,     0,     0,     0,     0,     0,   153,
   154,   155,   156,   141,   142,     0,   143,   144,   145,   146,
   147,   148,   149,     0,     0,     0,     0,     0,     0,     0,
     0,   153,   154,   155,   156
};

static const short yycheck[] = {     1,
    50,    24,    64,    22,     1,   127,     1,    15,    17,    17,
     1,    13,    35,    15,    22,    17,    13,    45,    13,    41,
    22,    23,    13,    45,     1,     6,     9,     0,     5,     6,
     7,     8,    17,    43,    58,    43,    13,    45,    52,    41,
    54,    43,    27,    45,    46,    64,    41,    27,    45,    51,
    69,    61,    54,    61,    45,    45,    64,     1,    81,    61,
    31,     5,    64,     7,     8,    45,    43,    69,    45,    13,
    52,    54,    95,    55,    31,    19,    57,   253,    57,   107,
    57,    52,     1,    15,    55,   107,     5,    58,   210,   265,
    99,    99,    54,    57,   104,    57,   104,    99,    31,    43,
    54,    45,   104,    57,    13,   107,   129,   169,    29,    30,
   107,    54,   107,    57,    57,   117,   107,   140,   120,   121,
   182,    22,    23,    24,    43,    15,    45,    17,    49,    50,
    54,    17,    56,    23,    43,     1,    45,    53,    54,     5,
     6,     7,     8,    10,    11,    35,    55,   170,     4,    15,
   169,    41,    55,    43,    43,    45,    45,    54,    54,    56,
    56,   169,    17,   182,    20,    21,    55,   169,    52,   171,
   172,    61,   174,    52,   182,   225,   238,    43,    43,    45,
   182,     4,    47,    48,    40,   208,     4,    43,    44,    45,
   213,    57,    48,    14,     4,    53,    54,   171,   172,    55,
    76,    31,   252,    79,    54,   228,   229,    54,   231,    99,
    20,    21,   135,   136,   104,    57,   239,   107,   241,   238,
    56,   223,   224,    15,    43,    56,    43,    15,    29,    30,
   238,    16,    17,    43,    44,    45,   238,    22,    23,    24,
    25,    18,    27,    28,   267,    55,    47,    48,    49,    50,
    16,   253,    45,    53,    29,    54,    22,    23,    24,   261,
    26,    27,    58,   265,    58,   141,   142,   143,   144,   145,
   146,   147,   148,   149,   150,   151,   152,   153,   154,   155,
   156,     1,    12,    55,     0,     5,     6,     7,     8,     0,
    92,    80,     4,    13,   228,    69,    16,    17,    41,    35,
    45,    13,    22,    23,    24,     4,    26,    27,    20,    21,
    17,   231,   140,   177,    13,   213,   241,   252,   223,   117,
    -1,    20,    21,    43,    -1,    45,    -1,    -1,    40,    -1,
    -1,    43,    44,    45,    46,    47,    48,    57,     4,    -1,
    -1,    40,    -1,    55,    43,    44,    45,    -1,    47,    48,
    -1,    16,    17,    -1,    20,    21,    55,    22,    23,    24,
    -1,    26,    27,    -1,    -1,    29,    30,    -1,    32,    33,
    34,    35,    36,    37,    40,    -1,    -1,    43,    44,    45,
    -1,    47,    48,    47,    48,    49,    50,    29,    30,    55,
    32,    33,    34,    35,    36,    37,    38,    39,    -1,    41,
    42,    -1,    -1,    -1,    -1,    47,    48,    49,    50,    29,
    30,    -1,    32,    33,    34,    35,    36,    37,    38,    39,
    -1,    41,    -1,    -1,    -1,    -1,    -1,    47,    48,    49,
    50,    29,    30,    -1,    32,    33,    34,    35,    36,    37,
    38,    39,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    47,
    48,    49,    50,    29,    30,    -1,    32,    33,    34,    35,
    36,    37,    38,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
    -1,    47,    48,    49,    50
};
/* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
#line 3 "/usr/share/bison.simple"

/* 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., 675 Mass Ave, Cambridge, MA 02139, 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.  */

#ifndef alloca
#ifdef __GNUC__
#define alloca __builtin_alloca
#else /* not GNU C.  */
#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
#include <alloca.h>
#else /* not sparc */
#if defined (MSDOS) && !defined (__TURBOC__)
#include <malloc.h>
#else /* not MSDOS, or __TURBOC__ */
#if defined(_AIX)
#include <malloc.h>
 #pragma alloca
#else /* not MSDOS, __TURBOC__, or _AIX */
#ifdef __hpux
#ifdef __cplusplus
extern "C" {
void *alloca (unsigned int);
};
#else /* not __cplusplus */
void *alloca ();
#endif /* not __cplusplus */
#endif /* __hpux */
#endif /* not _AIX */
#endif /* not MSDOS, or __TURBOC__ */
#endif /* not sparc.  */
#endif /* not GNU C.  */
#endif /* alloca not defined.  */

/* 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.  */

/* 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	return(0)
#define YYABORT 	return(1)
#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

/* Prevent warning if -Wstrict-prototypes.  */
#ifdef __GNUC__
int yyparse (void);
#endif

#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;
     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, int count)
{
  register char *f = from;
  register char *t = to;
  register int i = count;

  while (i-- > 0)
    *t++ = *f++;
}

#endif
#endif

#line 196 "/usr/share/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 */

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;

#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");
	  return 2;
	}
      yystacksize *= 2;
      if (yystacksize > YYMAXDEPTH)
	yystacksize = YYMAXDEPTH;
      yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
      __yy_memcpy ((char *)yyss, (char *)yyss1, size * sizeof (*yyssp));
      yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
      __yy_memcpy ((char *)yyvs, (char *)yyvs1, size * sizeof (*yyvsp));
#ifdef YYLSP_NEEDED
      yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
      __yy_memcpy ((char *)yyls, (char *)yyls1, size * 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 167 "a60-parse.y"
{
		  rtree = 0;
		  yyerror ("no vaild input found");
	  ;
    break;}
case 2:
#line 172 "a60-parse.y"
{
		  open_new_scope ();
		  init_bltin ();
	  ;
    break;}
case 3:
#line 177 "a60-parse.y"
{
		  TREE *new = new_tree (t_block);
		  new->runme = run_block;
		  if (! current_scope)
			  xabort ("cannot recover from this error");
		  new->u.block = current_scope->block;
		  new->u.block->symtab = *current_scope->symtab;
		  new->u.block->nact = 
			  set_actidx (*current_scope->symtab);
		  new->u.block->stmt = yyvsp[0].tree;
		  new->next = 0;
		  rtree = new;
	  ;
    break;}
case 4:
#line 197 "a60-parse.y"
{ yyval.itype = 1; ;
    break;}
case 5:
#line 199 "a60-parse.y"
{ yyval.itype = 0; ;
    break;}
case 6:
#line 207 "a60-parse.y"
{ yyval.str = cleanup_identifier (yyvsp[0].str); ;
    break;}
case 7:
#line 215 "a60-parse.y"
{
		  EXPR *new = new_expr (e_string, ty_string);
		  new->u.string = yyvsp[0].str;
		  yyval.expr = new;
	  ;
    break;}
case 8:
#line 227 "a60-parse.y"
{
		  LHELM *new = make_var_ref (yyvsp[0].str, 1);
		  yyval.lhelm = new;
	  ;
    break;}
case 9:
#line 232 "a60-parse.y"
{
		  LHELM *new = make_var_ref (yyvsp[-3].str, 1);
		  if (new)
			  new->mindex = yyvsp[-1].mindex;
		  yyval.lhelm = new;
	  ;
    break;}
case 10:
#line 242 "a60-parse.y"
{
		  MINDEX *new = new_mindex (yyvsp[0].expr);
		  yyval.mindex = new;
	  ;
    break;}
case 11:
#line 247 "a60-parse.y"
{
		  MINDEX *new = new_mindex (yyvsp[0].expr);
		  MINDEX **i;
		  for (i = &(yyvsp[-2].mindex); *i; i = &(*i)->next);
		  *i = new;
		  yyval.mindex = yyvsp[-2].mindex;
	  ;
    break;}
case 12:
#line 258 "a60-parse.y"
{ yyval.expr = yyvsp[0].expr; ;
    break;}
case 13:
#line 270 "a60-parse.y"
{
		  EXPR *expr = new_expr (e_fcall, ty_unknown);
		  LHELM *new = make_var_ref (yyvsp[-3].str, 0);
		  if (new) {
			  new->u.fcall = new_funcall (new->sym, yyvsp[-1].expr);
			  expr->u.lhelm = new;
		  }
		  yyval.expr = expr;
	  ;
    break;}
case 14:
#line 285 "a60-parse.y"
{ yyval.expr = yyvsp[0].expr; ;
    break;}
case 15:
#line 287 "a60-parse.y"
{
		  EXPR *new = new_expr (e_condexpr, ty_unknown);
		  new->u.expr[0] = yyvsp[-3].expr;
		  new->u.expr[1] = yyvsp[-2].expr;
		  new->u.expr[2] = yyvsp[0].expr;
		  yyval.expr = new;
	  ;
    break;}
case 16:
#line 298 "a60-parse.y"
{ yyval.expr = yyvsp[0].expr; ;
    break;}
case 17:
#line 300 "a60-parse.y"
{ yyval.expr = yyvsp[0].expr; ;
    break;}
case 18:
#line 305 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_times, yyvsp[0].expr); ;
    break;}
case 19:
#line 307 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_rdiv, yyvsp[0].expr); ;
    break;}
case 20:
#line 309 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_plus, yyvsp[0].expr); ;
    break;}
case 21:
#line 311 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_minus, yyvsp[0].expr); ;
    break;}
case 22:
#line 313 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_pow, yyvsp[0].expr); ;
    break;}
case 23:
#line 315 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_idiv, yyvsp[0].expr); ;
    break;}
case 24:
#line 317 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_equiv, yyvsp[0].expr); ;
    break;}
case 25:
#line 319 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_impl, yyvsp[0].expr); ;
    break;}
case 26:
#line 321 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_or, yyvsp[0].expr); ;
    break;}
case 27:
#line 323 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_and, yyvsp[0].expr); ;
    break;}
case 28:
#line 325 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[0].expr, e_op_not, (EXPR *) 0); ;
    break;}
case 29:
#line 327 "a60-parse.y"
{
		  if (unary_minus)
			  unary_minus = 0,
			  yyerror ("unary `-' invalid in relation");
		  yyval.expr = yyvsp[0].expr;
	  ;
    break;}
case 30:
#line 334 "a60-parse.y"
{
		  if (unary_minus) {
			  unary_minus = 0;
			  yyval.expr = new_mix_expr (yyvsp[0].expr, e_op_neg, (EXPR *) 0);
		  }
		  else
			  yyval.expr = yyvsp[0].expr;
	  ;
    break;}
case 31:
#line 343 "a60-parse.y"
{
		  yyval.expr = new_mix_expr (yyvsp[0].expr, e_op_neg, (EXPR *) 0);
	  ;
    break;}
case 32:
#line 350 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_less, yyvsp[0].expr); ;
    break;}
case 33:
#line 352 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_notgreater, yyvsp[0].expr); ;
    break;}
case 34:
#line 354 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_equal, yyvsp[0].expr); ;
    break;}
case 35:
#line 356 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_notless, yyvsp[0].expr); ;
    break;}
case 36:
#line 358 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_greater, yyvsp[0].expr); ;
    break;}
case 37:
#line 360 "a60-parse.y"
{ yyval.expr = new_xmix_expr (yyvsp[-2].expr, e_op_notequal, yyvsp[0].expr); ;
    break;}
case 38:
#line 365 "a60-parse.y"
{
		  EXPR *new = new_expr (e_ival, ty_integer);
		  new->u.ival = yyvsp[0].itype;
		  yyval.expr = new;
	  ;
    break;}
case 39:
#line 371 "a60-parse.y"
{
		  EXPR *new = new_expr (e_rval, ty_real);
		  new->u.rval = yyvsp[0].rtype;
		  yyval.expr = new;
	  ;
    break;}
case 40:
#line 377 "a60-parse.y"
{
		  yyval.expr = yyvsp[0].expr;
	  ;
    break;}
case 41:
#line 381 "a60-parse.y"
{
		  EXPR *new;

		  if (! yyvsp[0].lhelm) {
			  new = (EXPR *) 0;
		  }
		  else {
			  new = new_expr (e_symbol, ty_unknown);
			  new->u.lhelm = yyvsp[0].lhelm;
			  
			  if (TIS_PROC(yyvsp[0].lhelm->sym->type)) {
				  LHELM *lhelm = yyvsp[0].lhelm;
				  new->tag = e_fcall;
				  lhelm->u.fcall = new_funcall (lhelm->sym,
								(EXPR *) 0);
				  new->u.lhelm = lhelm;
			  }
		  }

		  yyval.expr = new;
	  ;
    break;}
case 42:
#line 403 "a60-parse.y"
{
		  EXPR *new = new_expr (e_bool, ty_bool);
		  new->u.bool = yyvsp[0].itype;
		  yyval.expr = new;
	  ;
    break;}
case 43:
#line 409 "a60-parse.y"
{ yyval.expr = yyvsp[-1].expr; ;
    break;}
case 45:
#line 418 "a60-parse.y"
{ yyval.expr = yyvsp[0].expr; ;
    break;}
case 46:
#line 420 "a60-parse.y"
{
		  EXPR *new = new_expr (e_condexpr, ty_unknown);
		  new->u.expr[0] = yyvsp[-3].expr;
		  new->u.expr[1] = yyvsp[-2].expr;
		  new->u.expr[2] = yyvsp[0].expr;
		  yyval.expr = new;
	  ;
    break;}
case 47:
#line 431 "a60-parse.y"
{
		  SYMTAB *new = new_symbol (yyvsp[0].str, ty_label, s_undef);
		  EXPR *ex = new_expr (e_label, ty_label);
		  ex->u.label = new;
		  yyval.expr = ex;
	  ;
    break;}
case 48:
#line 438 "a60-parse.y"
{ yyval.expr = yyvsp[0].expr; ;
    break;}
case 49:
#line 440 "a60-parse.y"
{ yyval.expr = yyvsp[-1].expr; ;
    break;}
case 50:
#line 445 "a60-parse.y"
{
		  EXPR *ex = new_expr (e_switch, ty_switch);
		  ex->u.eswitch = new_eswitch (yyvsp[-3].str, yyvsp[-1].expr);
		  yyval.expr = ex;
	  ;
    break;}
case 51:
#line 457 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 52:
#line 459 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 53:
#line 464 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 54:
#line 466 "a60-parse.y"
{
		  TREE *p1 = yyvsp[-1].tree, *p2 = yyvsp[0].tree;
		  p1->next = p2;
		  yyval.tree = p1;
	  ;
    break;}
case 55:
#line 475 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 56:
#line 477 "a60-parse.y"
{
		  TREE *p1 = yyvsp[-1].tree, *p2 = yyvsp[0].tree;
		  p1->next = p2;
		  yyval.tree = p1;
	  ;
    break;}
case 57:
#line 486 "a60-parse.y"
{
		  TREE *new = new_tree (t_block);
		  new->runme = run_block;
		  new->u.block = current_scope->block;
		  /* new->u.block->symtab = current_scope->symtab; */
		  new->u.block->nact = 
			  set_actidx (*current_scope->symtab);
		  new->u.block->stmt = yyvsp[0].tree;
		  new->next = 0;
		  yyval.tree = new;
		  close_current_scope ();
	  ;
    break;}
case 58:
#line 502 "a60-parse.y"
{
		  open_new_scope ();
	  ;
    break;}
case 59:
#line 506 "a60-parse.y"
{
		  TREE *p = yyvsp[0].tree;
		  TREE *new = new_tree (t_block);
		  new->runme = run_block;
		  new->u.block = current_scope->block;
		  new->u.block->stmt = p;
		  new->next = 0;
		  close_current_scope ();
		  yyval.tree = new;
	  ;
    break;}
case 60:
#line 520 "a60-parse.y"
{
		  open_new_scope ();
	  ;
    break;}
case 61:
#line 524 "a60-parse.y"
{
		  SYMTAB *p = yyvsp[0].sym;
		  examine_and_append_symtab (current_scope->symtab, p);
	  ;
    break;}
case 62:
#line 529 "a60-parse.y"
{
		  SYMTAB *p = yyvsp[0].sym;
		  examine_and_append_symtab (current_scope->symtab, p);
	  ;
    break;}
case 63:
#line 534 "a60-parse.y"
{ /** yyerror ("declaration error"); **/ ;
    break;}
case 64:
#line 539 "a60-parse.y"
{ yyval.tree = yyvsp[-1].tree; ;
    break;}
case 65:
#line 541 "a60-parse.y"
{
		  if (! yyvsp[-2].tree) {
			  /* there was an error parsing stmt */
			  yyval.tree = yyvsp[0].tree;
		  }
		  else {
			  append_stmt (&(yyvsp[-2].tree)->next, yyvsp[0].tree, 0);
			  yyval.tree = yyvsp[-2].tree;
		  }
	  ;
    break;}
case 66:
#line 555 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 67:
#line 557 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 68:
#line 559 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 69:
#line 564 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 70:
#line 566 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 71:
#line 568 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 72:
#line 573 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 73:
#line 575 "a60-parse.y"
{
		  (yyvsp[-1].tree)->next = yyvsp[0].tree;
		  yyval.tree = yyvsp[-1].tree;

	  ;
    break;}
case 74:
#line 584 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 75:
#line 586 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 76:
#line 588 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 77:
#line 590 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 78:
#line 592 "a60-parse.y"
{ yyval.tree = 0; ;
    break;}
case 79:
#line 600 "a60-parse.y"
{ yyval.tree = new_assign_stmt (yyvsp[-1].lhelm, yyvsp[0].expr); ;
    break;}
case 80:
#line 605 "a60-parse.y"
{ yyval.expr = yyvsp[0].expr; ;
    break;}
case 81:
#line 610 "a60-parse.y"
{ yyval.lhelm = yyvsp[0].lhelm; ;
    break;}
case 82:
#line 612 "a60-parse.y"
{
		  LHELM **l = &(yyvsp[-1].lhelm);
		  for (; *l; l = &(*l)->next)
			  continue;
		  *l = yyvsp[0].lhelm;
		  yyval.lhelm = yyvsp[-1].lhelm;
	  ;
    break;}
case 83:
#line 623 "a60-parse.y"
{ yyval.lhelm = yyvsp[-1].lhelm; ;
    break;}
case 84:
#line 631 "a60-parse.y"
{ yyval.tree = new_goto_stmt (yyvsp[0].expr); ;
    break;}
case 85:
#line 639 "a60-parse.y"
{ yyval.tree = new_tree (t_dummy_stmt); ;
    break;}
case 86:
#line 647 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 87:
#line 649 "a60-parse.y"
{
		  (yyvsp[-2].tree)->u.ifstmt->telse = yyvsp[0].tree;
		  yyval.tree = yyvsp[-2].tree;
	  ;
    break;}
case 88:
#line 654 "a60-parse.y"
{
		  TREE *new = new_if_stmt (yyvsp[-1].expr);
		  new->u.ifstmt->tthen = yyvsp[0].tree;
		  yyval.tree = new;
	  ;
    break;}
case 89:
#line 660 "a60-parse.y"
{
		  (yyvsp[-1].tree)->next = yyvsp[0].tree;
		  yyval.tree = yyvsp[-1].tree;
	  ;
    break;}
case 90:
#line 668 "a60-parse.y"
{
		  TREE *new = new_if_stmt (yyvsp[-1].expr);
		  new->u.ifstmt->tthen = yyvsp[0].tree;
		  yyval.tree = new;
	  ;
    break;}
case 91:
#line 677 "a60-parse.y"
{ yyval.expr = yyvsp[-1].expr; ;
    break;}
case 92:
#line 685 "a60-parse.y"
{
		  TREE *new = new_tree (t_for_stmt);
		  new->runme = run_forstmt;
		  new->u.forstmt = yyvsp[-1].forstmt;
		  new->u.forstmt->stmt = yyvsp[0].tree;
		  yyval.tree = new;
	  ;
    break;}
case 93:
#line 693 "a60-parse.y"
{
		  (yyvsp[-1].tree)->next = yyvsp[0].tree;
		  yyval.tree = yyvsp[-1].tree;
	  ;
    break;}
case 94:
#line 701 "a60-parse.y"
{
		  FORSTMT *new = TALLOC (FORSTMT);
		  new->lvar = yyvsp[-3].lhelm;
		  new->forelm = yyvsp[-1].forelm;
		  yyval.forstmt = new;
	  ;
    break;}
case 95:
#line 711 "a60-parse.y"
{ yyval.forelm = yyvsp[0].forelm; ;
    break;}
case 96:
#line 713 "a60-parse.y"
{
		  FORELM **fe = &(yyvsp[-2].forelm);
		  while (*fe)
			  fe = & (*fe)->next;
		  *fe = yyvsp[0].forelm;
		  yyval.forelm = yyvsp[-2].forelm;
	  ;
    break;}
case 97:
#line 724 "a60-parse.y"
{
		  FORELM *new = TALLOC (FORELM);
		  new->tag = fe_expr;
		  new->expr[0] = yyvsp[0].expr;
		  new->next = (FORELM *) 0;
		  yyval.forelm = new;
	  ;
    break;}
case 98:
#line 732 "a60-parse.y"
{
		  FORELM *new = TALLOC (FORELM);
		  new->tag = fe_until;
		  new->expr[0] = yyvsp[-4].expr;
		  new->expr[1] = yyvsp[-2].expr;
		  new->expr[2] = yyvsp[0].expr;
		  new->next = (FORELM *) 0;
		  yyval.forelm = new;
	  ;
    break;}
case 99:
#line 742 "a60-parse.y"
{
		  FORELM *new = TALLOC (FORELM);
		  new->tag = fe_while;
		  new->expr[0] = yyvsp[-2].expr;
		  new->expr[1] = yyvsp[0].expr;
		  new->next = (FORELM *) 0;
		  yyval.forelm = new;
	  ;
    break;}
case 100:
#line 757 "a60-parse.y"
{
		  TREE *new = new_tree (t_proc_stmt);
		  SYMTAB *sym = new_symbol (yyvsp[-1].str, ty_proc, s_undef);
		  new->runme = run_proc;
		  new->u.funcall = new_funcall (sym, yyvsp[0].expr);
		  yyval.tree = new;
	  ;
    break;}
case 101:
#line 768 "a60-parse.y"
{ yyval.expr = (EXPR *) 0; ;
    break;}
case 102:
#line 770 "a60-parse.y"
{ yyval.expr = yyvsp[-1].expr; ;
    break;}
case 103:
#line 775 "a60-parse.y"
{ yyval.expr = yyvsp[0].expr; ;
    break;}
case 104:
#line 777 "a60-parse.y"
{
		  EXPR **expr = &(yyvsp[-2].expr);
		  while (*expr)
			  expr = &(*expr)->next;
		  *expr = yyvsp[0].expr;
		  yyval.expr = yyvsp[-2].expr;
	  ;
    break;}
case 105:
#line 788 "a60-parse.y"
{ /* do nothing */ ;
    break;}
case 106:
#line 790 "a60-parse.y"
{ /* do nothing */ ;
    break;}
case 107:
#line 795 "a60-parse.y"
{ /* do nothing */ ;
    break;}
case 108:
#line 800 "a60-parse.y"
{ yyval.expr = yyvsp[0].expr; ;
    break;}
case 109:
#line 802 "a60-parse.y"
{ yyval.expr = yyvsp[0].expr; ;
    break;}
case 110:
#line 810 "a60-parse.y"
{ yyval.sym = yyvsp[0].sym; ;
    break;}
case 111:
#line 812 "a60-parse.y"
{ yyval.sym = yyvsp[0].sym; ;
    break;}
case 112:
#line 814 "a60-parse.y"
{ yyval.sym = yyvsp[0].sym; ;
    break;}
case 113:
#line 816 "a60-parse.y"
{ yyval.sym = yyvsp[0].sym; ;
    break;}
case 114:
#line 823 "a60-parse.y"
{
		  ENUM type_tag p1 = (yyvsp[-1].otype).type;
		  int own = (yyvsp[-1].otype).own;
		  SYMTAB *p2 = yyvsp[0].sym;
		  sym_all_type (p2, p1, own);
		  yyval.sym = p2;
	  ;
    break;}
case 115:
#line 834 "a60-parse.y"
{
		  OWNTYPE new;
		  new.type = yyvsp[0].typ;
		  new.own = 0;
		  yyval.otype = new;
	  ;
    break;}
case 116:
#line 841 "a60-parse.y"
{
		  OWNTYPE new;
		  new.type = yyvsp[0].typ;
		  new.own = 1;
		  yyval.otype = new;
	  ;
    break;}
case 117:
#line 851 "a60-parse.y"
{
		  SYMTAB *new = new_symbol (yyvsp[0].str, ty_unknown, s_defined);
		  new->block = current_scope->block;
		  yyval.sym = new;
	  ;
    break;}
case 118:
#line 857 "a60-parse.y"
{
		  if (find_in_symtab (yyvsp[-2].sym, yyvsp[0].str)) {
			  yyerror ("duplicate symbol");
			  yyval.sym = yyvsp[-2].sym;
		  }
		  else {
			  SYMTAB *new = new_symbol (yyvsp[0].str, ty_unknown, s_defined);
			  new->next = yyvsp[-2].sym;
			  new->block = current_scope->block;
			  yyval.sym = new;
		  }
	  ;
    break;}
case 119:
#line 873 "a60-parse.y"
{ yyval.typ = ty_integer; ;
    break;}
case 120:
#line 875 "a60-parse.y"
{ yyval.typ = ty_real; ;
    break;}
case 121:
#line 877 "a60-parse.y"
{ yyval.typ = ty_bool; ;
    break;}
case 122:
#line 885 "a60-parse.y"
{
		  sym_all_type (yyvsp[0].sym, TAR_TYPE(ty_real), 0);
		  yyval.sym = yyvsp[0].sym;
	  ;
    break;}
case 123:
#line 890 "a60-parse.y"
{
		  sym_all_type (yyvsp[0].sym, TAR_TYPE((yyvsp[-2].otype).type), (yyvsp[-2].otype).own);
		  yyval.sym = yyvsp[0].sym;
	  ;
    break;}
case 124:
#line 898 "a60-parse.y"
{ yyval.sym = yyvsp[0].sym; ;
    break;}
case 125:
#line 900 "a60-parse.y"
{
		  examine_and_append_symtab (&(yyvsp[-2].sym), yyvsp[0].sym);
		  yyval.sym = yyvsp[-2].sym;
	  ;
    break;}
case 126:
#line 908 "a60-parse.y"
{
		  SYMTAB *new = new_symbol (yyvsp[-3].str, ty_unknown, s_defined);
		  new->block = current_scope->block;
		  new->u.arr = TALLOC (ARRAY);
		  new->u.arr->bound = yyvsp[-1].bound;
		  new->u.arr->dim = num_bounds (yyvsp[-1].bound);
		  /** new->u.arr->val = 0; **/
		  yyval.sym = new;
	  ;
    break;}
case 127:
#line 918 "a60-parse.y"
{
		  SYMTAB *new = new_symbol (yyvsp[-2].str, ty_unknown, s_defined);
		  new->block = current_scope->block;
		  new->u.arr = TALLOC (ARRAY);
		  new->u.arr->bound = (yyvsp[0].sym)->u.arr->bound;
		  new->u.arr->dim = (yyvsp[0].sym)->u.arr->dim;
		  /** new->u.arr->val = 0; **/
		  new->next = yyvsp[0].sym;
		  yyval.sym = new;
		  
	  ;
    break;}
case 128:
#line 933 "a60-parse.y"
{ yyval.bound = yyvsp[0].bound; ;
    break;}
case 129:
#line 935 "a60-parse.y"
{
		  BOUND **b = &(yyvsp[-2].bound);
		  while (*b)
			  b = &(*b)->next;
		  *b = yyvsp[0].bound;
		  yyval.bound = yyvsp[-2].bound;
	  ;
    break;}
case 130:
#line 946 "a60-parse.y"
{
		  BOUND *new = TALLOC (BOUND);
		  new->low = yyvsp[-2].expr;
		  new->high = yyvsp[0].expr;
		  yyval.bound = new;
	  ;
    break;}
case 131:
#line 959 "a60-parse.y"
{
		  SYMTAB *new = new_symbol (yyvsp[-2].str, ty_switch, s_defined);
		  new->block = current_scope->block;
		  new->u.dexpr = yyvsp[0].expr;
		  yyval.sym = new;
	  ;
    break;}
case 132:
#line 969 "a60-parse.y"
{ yyval.expr = yyvsp[0].expr; ;
    break;}
case 133:
#line 971 "a60-parse.y"
{
		  append_expr (&(yyvsp[-2].expr), yyvsp[0].expr);
		  yyval.expr = yyvsp[-2].expr;
	  ;
    break;}
case 134:
#line 982 "a60-parse.y"
{
		  (yyvsp[-1].sym)->u.pproc->block->stmt = yyvsp[0].tree;
		  close_current_scope ();
		  yyval.sym = 0;
	  ;
    break;}
case 135:
#line 991 "a60-parse.y"
{ yyval.typ = ty_proc; ;
    break;}
case 136:
#line 993 "a60-parse.y"
{ yyval.typ = TPROC_TYPE(yyvsp[0].typ); ;
    break;}
case 137:
#line 998 "a60-parse.y"
{ yyval.tree = yyvsp[0].tree; ;
    break;}
case 138:
#line 1000 "a60-parse.y"
{ yyval.tree = (TREE *) 0; ;
    break;}
case 139:
#line 1006 "a60-parse.y"
{
		  SYMTAB *psym = new_symbol (yyvsp[0].str, yyvsp[-2].typ, s_defined);
		  PPROC *new = TALLOC (PPROC);
		  examine_and_append_symtab (current_scope->symtab, psym);
		  psym->block = current_scope->block;
		  psym->u.pproc = new;
		  open_new_scope ();
		  new->block = current_scope->block;
		  yyval.sym = psym;
	  ;
    break;}
case 140:
#line 1020 "a60-parse.y"
{
		  SYMTAB *psym = yyvsp[-4].sym;
		  examine_and_append_symtab (current_scope->symtab, yyvsp[-3].sym);
		  psym->u.pproc->nparm = num_symbols (yyvsp[-3].sym);
		  psym->u.pproc->block->nact = 
			  set_actidx (*current_scope->symtab);
		  replace_type (*current_scope->symtab, yyvsp[0].sym);
		  set_by_value (*current_scope->symtab, yyvsp[-1].sym);
		  yyval.sym = psym;
	  ;
    break;}
case 141:
#line 1034 "a60-parse.y"
{ yyval.sym = (SYMTAB *) 0; ;
    break;}
case 142:
#line 1036 "a60-parse.y"
{ yyval.sym = yyvsp[0].sym; ;
    break;}
case 143:
#line 1041 "a60-parse.y"
{
		  sym_all_type (yyvsp[-1].sym, yyvsp[-2].typ, 0);
		  yyval.sym = yyvsp[-1].sym;
	  ;
    break;}
case 144:
#line 1046 "a60-parse.y"
{
		  sym_all_type (yyvsp[-1].sym, yyvsp[-2].typ, 0);
		  examine_and_append_symtab (&(yyvsp[-3].sym), yyvsp[-1].sym);
		  yyval.sym = yyvsp[-3].sym;
	  ;
    break;}
case 145:
#line 1055 "a60-parse.y"
{ yyval.typ = ty_string; ;
    break;}
case 146:
#line 1057 "a60-parse.y"
{ yyval.typ = yyvsp[0].typ; ;
    break;}
case 147:
#line 1059 "a60-parse.y"
{ yyval.typ = ty_real_array; ;
    break;}
case 148:
#line 1061 "a60-parse.y"
{ yyval.typ = TAR_TYPE(yyvsp[-1].typ); ;
    break;}
case 149:
#line 1063 "a60-parse.y"
{ yyval.typ = ty_label; ;
    break;}
case 150:
#line 1065 "a60-parse.y"
{ yyval.typ = ty_switch; ;
    break;}
case 151:
#line 1067 "a60-parse.y"
{ yyval.typ = ty_proc; ;
    break;}
case 152:
#line 1069 "a60-parse.y"
{ yyval.typ = TPROC_TYPE(yyvsp[-1].typ); ;
    break;}
case 153:
#line 1074 "a60-parse.y"
{ yyval.sym = (SYMTAB *) 0; ;
    break;}
case 154:
#line 1076 "a60-parse.y"
{ yyval.sym = yyvsp[-1].sym; ;
    break;}
case 155:
#line 1081 "a60-parse.y"
{
		  yyval.sym = new_symbol (yyvsp[0].str, ty_unknown, s_byname);
	  ;
    break;}
case 156:
#line 1085 "a60-parse.y"
{
		  SYMTAB *new = new_symbol (yyvsp[0].str, ty_unknown, s_byname);
		  examine_and_append_symtab (&((yyvsp[-2].sym)->next), new);
		  yyval.sym = yyvsp[-2].sym;
	  ;
    break;}
case 157:
#line 1094 "a60-parse.y"
{ yyval.sym = (SYMTAB *) 0; ;
    break;}
case 158:
#line 1096 "a60-parse.y"
{ yyval.sym = yyvsp[-1].sym; ;
    break;}
case 159:
#line 1101 "a60-parse.y"
{ yyval.sym = yyvsp[0].sym; ;
    break;}
case 160:
#line 1103 "a60-parse.y"
{
		  examine_and_append_symtab (&(yyvsp[-2].sym), yyvsp[0].sym);
		  yyval.sym = yyvsp[-2].sym;
	  ;
    break;}
case 161:
#line 1111 "a60-parse.y"
{
		  SYMTAB *new = new_symbol (yyvsp[0].str, ty_unknown, s_byname);
		  new->block = current_scope->block;
		  yyval.sym = new;
	  ;
    break;}
case 162:
#line 1123 "a60-parse.y"
{
		  TREE *new = new_tree (t_label);
		  SYMTAB *s = new_symbol (yyvsp[-1].str, ty_label, s_defined);
		  s->block = current_scope->block;
		  new->u.symbol = s;
		  examine_and_append_symtab (current_scope->symtab, s);
		  yyval.tree = new;
	  ;
    break;}
case 163:
#line 1135 "a60-parse.y"
{ yyval.str = yyvsp[0].str; ;
    break;}
case 164:
#line 1137 "a60-parse.y"
{
		  char tmp[32];

		  sprintf(tmp, "%ld", yyvsp[0].itype);
		  yyval.str = xstrdup (tmp);
	  ;
    break;}
case 165:
#line 1149 "a60-parse.y"
{ yyval.itype = yyvsp[0].itype; ;
    break;}
case 166:
#line 1151 "a60-parse.y"
{ yyval.itype = yyvsp[0].itype; ;
    break;}
case 167:
#line 1153 "a60-parse.y"
{ yyval.itype = - (yyvsp[0].itype); ;
    break;}
case 168:
#line 1158 "a60-parse.y"
{ yyval.rtype = yyvsp[0].rtype; ;
    break;}
case 169:
#line 1160 "a60-parse.y"
{ yyval.rtype = (yyvsp[-2].rtype) * pow ((double) 10, (double) (yyvsp[0].itype)); ;
    break;}
case 170:
#line 1162 "a60-parse.y"
{ yyval.rtype = (double) (yyvsp[-2].itype) * pow ((double) 10, (double) (yyvsp[0].itype)); ;
    break;}
case 171:
#line 1164 "a60-parse.y"
{ yyval.rtype = pow ((double) 10, (double) (yyvsp[0].itype)); ;
    break;}
}
   /* the action file gets copied in in place of this dollarsign */
#line 498 "/usr/share/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;
}
#line 1167 "a60-parse.y"


/*** in future: #ifdef YYBISON ***/
#ifndef YYBYACC
/*
 * the yyoverflow function for use with bison to avoid use of alloca():
 */
#ifdef ALLOCA_MISSING
#ifdef YYLSP_NEEDED
static void
a60_yyoverflow (s, yyss1, size_yyss, yyvs1, size_yyvs, yyls1, size_yyls, yysp)
char *s;
short *yyss1;
int size_yyss;
YYSTYPE *yyvs1;
int size_yyvs;
YYLTYPE *yyls1;
int size_yyls;
int *yysp;
{
 	yyerror (s);
}
#else /* ! YYLSP_NEEDED */
static void
a60_yyoverflow (s, yyss1, size_yyss, yyvs1, size_yyvs, yysp)
char *s;
short *yyss1;
int size_yyss;
YYSTYPE *yyvs1;
int size_yyvs;
int *yysp;
{
 	yyerror (s);
}
#endif /* ! YYLSP_NEEDED */
#endif /* ALLOCA_MISSING */
#endif /* ! YYBISON */

/* end of a60-parse.y */