summaryrefslogtreecommitdiffstats
path: root/contrib/byacc/test/grammar.output
blob: 6351322345b5b6e176be994fc31e168dcf596a30 (plain)
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
   0  $accept : program $end

   1  program :
   2          | translation_unit

   3  translation_unit : external_declaration
   4                   | translation_unit external_declaration

   5  external_declaration : declaration
   6                       | function_definition
   7                       | ';'
   8                       | linkage_specification
   9                       | T_ASM T_ASMARG ';'
  10                       | error T_MATCHRBRACE
  11                       | error ';'

  12  braces : T_LBRACE T_MATCHRBRACE

  13  linkage_specification : T_EXTERN T_STRING_LITERAL braces
  14                        | T_EXTERN T_STRING_LITERAL declaration

  15  declaration : decl_specifiers ';'
  16              | decl_specifiers init_declarator_list ';'

  17  $$1 :

  18  declaration : any_typedef decl_specifiers $$1 opt_declarator_list ';'

  19  any_typedef : T_EXTENSION T_TYPEDEF
  20              | T_TYPEDEF

  21  opt_declarator_list :
  22                      | declarator_list

  23  declarator_list : declarator
  24                  | declarator_list ',' declarator

  25  $$2 :

  26  $$3 :

  27  function_definition : decl_specifiers declarator $$2 opt_declaration_list T_LBRACE $$3 T_MATCHRBRACE

  28  $$4 :

  29  function_definition : declarator $$4 opt_declaration_list T_LBRACE T_MATCHRBRACE

  30  opt_declaration_list :
  31                       | T_VA_DCL
  32                       | declaration_list

  33  declaration_list : declaration
  34                   | declaration_list declaration

  35  decl_specifiers : decl_specifier
  36                  | decl_specifiers decl_specifier

  37  decl_specifier : storage_class
  38                 | type_specifier
  39                 | type_qualifier

  40  storage_class : T_AUTO
  41                | T_EXTERN
  42                | T_REGISTER
  43                | T_STATIC
  44                | T_INLINE
  45                | T_EXTENSION

  46  type_specifier : T_CHAR
  47                 | T_DOUBLE
  48                 | T_FLOAT
  49                 | T_INT
  50                 | T_LONG
  51                 | T_SHORT
  52                 | T_SIGNED
  53                 | T_UNSIGNED
  54                 | T_VOID
  55                 | T_Bool
  56                 | T_Complex
  57                 | T_Imaginary
  58                 | T_TYPEDEF_NAME
  59                 | struct_or_union_specifier
  60                 | enum_specifier

  61  type_qualifier : T_TYPE_QUALIFIER
  62                 | T_DEFINE_NAME

  63  struct_or_union_specifier : struct_or_union any_id braces
  64                            | struct_or_union braces
  65                            | struct_or_union any_id

  66  struct_or_union : T_STRUCT
  67                  | T_UNION

  68  init_declarator_list : init_declarator
  69                       | init_declarator_list ',' init_declarator

  70  init_declarator : declarator

  71  $$5 :

  72  init_declarator : declarator '=' $$5 T_INITIALIZER

  73  enum_specifier : enumeration any_id braces
  74                 | enumeration braces
  75                 | enumeration any_id

  76  enumeration : T_ENUM

  77  any_id : T_IDENTIFIER
  78         | T_TYPEDEF_NAME

  79  declarator : pointer direct_declarator
  80             | direct_declarator

  81  direct_declarator : identifier_or_ref
  82                    | '(' declarator ')'
  83                    | direct_declarator T_BRACKETS
  84                    | direct_declarator '(' parameter_type_list ')'
  85                    | direct_declarator '(' opt_identifier_list ')'

  86  pointer : '*' opt_type_qualifiers
  87          | '*' opt_type_qualifiers pointer

  88  opt_type_qualifiers :
  89                      | type_qualifier_list

  90  type_qualifier_list : type_qualifier
  91                      | type_qualifier_list type_qualifier

  92  parameter_type_list : parameter_list
  93                      | parameter_list ',' T_ELLIPSIS

  94  parameter_list : parameter_declaration
  95                 | parameter_list ',' parameter_declaration

  96  parameter_declaration : decl_specifiers declarator
  97                        | decl_specifiers abs_declarator
  98                        | decl_specifiers

  99  opt_identifier_list :
 100                      | identifier_list

 101  identifier_list : any_id
 102                  | identifier_list ',' any_id

 103  identifier_or_ref : any_id
 104                    | '&' any_id

 105  abs_declarator : pointer
 106                 | pointer direct_abs_declarator
 107                 | direct_abs_declarator

 108  direct_abs_declarator : '(' abs_declarator ')'
 109                        | direct_abs_declarator T_BRACKETS
 110                        | T_BRACKETS
 111                        | direct_abs_declarator '(' parameter_type_list ')'
 112                        | direct_abs_declarator '(' ')'
 113                        | '(' parameter_type_list ')'
 114                        | '(' ')'

state 0
	$accept : . program $end  (0)
	program : .  (1)

	error  shift 1
	'('  shift 2
	'*'  shift 3
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 6
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 9
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_TYPEDEF  shift 12
	T_INLINE  shift 13
	T_EXTENSION  shift 14
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	T_ASM  shift 31
	';'  shift 32
	$end  reduce 1

	program  goto 33
	decl_specifiers  goto 34
	decl_specifier  goto 35
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	declarator  goto 41
	direct_declarator  goto 42
	struct_or_union  goto 43
	pointer  goto 44
	any_id  goto 45
	identifier_or_ref  goto 46
	enumeration  goto 47
	translation_unit  goto 48
	external_declaration  goto 49
	declaration  goto 50
	function_definition  goto 51
	linkage_specification  goto 52
	any_typedef  goto 53


state 1
	external_declaration : error . T_MATCHRBRACE  (10)
	external_declaration : error . ';'  (11)

	T_MATCHRBRACE  shift 54
	';'  shift 55
	.  error


state 2
	direct_declarator : '(' . declarator ')'  (82)

	'('  shift 2
	'*'  shift 3
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 56
	.  error

	declarator  goto 57
	direct_declarator  goto 42
	pointer  goto 44
	any_id  goto 45
	identifier_or_ref  goto 46


state 3
	pointer : '*' . opt_type_qualifiers  (86)
	pointer : '*' . opt_type_qualifiers pointer  (87)
	opt_type_qualifiers : .  (88)

	T_DEFINE_NAME  shift 7
	T_TYPE_QUALIFIER  shift 30
	'('  reduce 88
	'*'  reduce 88
	'&'  reduce 88
	T_IDENTIFIER  reduce 88
	T_TYPEDEF_NAME  reduce 88
	T_BRACKETS  reduce 88
	','  reduce 88
	')'  reduce 88

	type_qualifier  goto 58
	opt_type_qualifiers  goto 59
	type_qualifier_list  goto 60


state 4
	identifier_or_ref : '&' . any_id  (104)

	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 56
	.  error

	any_id  goto 61


state 5
	any_id : T_IDENTIFIER .  (77)

	.  reduce 77


6: reduce/reduce conflict (reduce 58, reduce 78) on '('
6: reduce/reduce conflict (reduce 58, reduce 78) on T_TYPEDEF_NAME
6: reduce/reduce conflict (reduce 58, reduce 78) on T_DEFINE_NAME
6: reduce/reduce conflict (reduce 58, reduce 78) on T_AUTO
6: reduce/reduce conflict (reduce 58, reduce 78) on T_EXTERN
6: reduce/reduce conflict (reduce 58, reduce 78) on T_REGISTER
6: reduce/reduce conflict (reduce 58, reduce 78) on T_STATIC
6: reduce/reduce conflict (reduce 58, reduce 78) on T_INLINE
6: reduce/reduce conflict (reduce 58, reduce 78) on T_EXTENSION
6: reduce/reduce conflict (reduce 58, reduce 78) on T_CHAR
6: reduce/reduce conflict (reduce 58, reduce 78) on T_DOUBLE
6: reduce/reduce conflict (reduce 58, reduce 78) on T_FLOAT
6: reduce/reduce conflict (reduce 58, reduce 78) on T_INT
6: reduce/reduce conflict (reduce 58, reduce 78) on T_VOID
6: reduce/reduce conflict (reduce 58, reduce 78) on T_LONG
6: reduce/reduce conflict (reduce 58, reduce 78) on T_SHORT
6: reduce/reduce conflict (reduce 58, reduce 78) on T_SIGNED
6: reduce/reduce conflict (reduce 58, reduce 78) on T_UNSIGNED
6: reduce/reduce conflict (reduce 58, reduce 78) on T_ENUM
6: reduce/reduce conflict (reduce 58, reduce 78) on T_STRUCT
6: reduce/reduce conflict (reduce 58, reduce 78) on T_UNION
6: reduce/reduce conflict (reduce 58, reduce 78) on T_Bool
6: reduce/reduce conflict (reduce 58, reduce 78) on T_Complex
6: reduce/reduce conflict (reduce 58, reduce 78) on T_Imaginary
6: reduce/reduce conflict (reduce 58, reduce 78) on T_TYPE_QUALIFIER
6: reduce/reduce conflict (reduce 58, reduce 78) on T_BRACKETS
6: reduce/reduce conflict (reduce 58, reduce 78) on ';'
6: reduce/reduce conflict (reduce 58, reduce 78) on ','
6: reduce/reduce conflict (reduce 58, reduce 78) on ')'
state 6
	type_specifier : T_TYPEDEF_NAME .  (58)
	any_id : T_TYPEDEF_NAME .  (78)

	'('  reduce 58
	'*'  reduce 58
	'&'  reduce 58
	T_IDENTIFIER  reduce 58
	T_TYPEDEF_NAME  reduce 58
	T_DEFINE_NAME  reduce 58
	T_AUTO  reduce 58
	T_EXTERN  reduce 58
	T_REGISTER  reduce 58
	T_STATIC  reduce 58
	T_TYPEDEF  reduce 78
	T_INLINE  reduce 58
	T_EXTENSION  reduce 58
	T_CHAR  reduce 58
	T_DOUBLE  reduce 58
	T_FLOAT  reduce 58
	T_INT  reduce 58
	T_VOID  reduce 58
	T_LONG  reduce 58
	T_SHORT  reduce 58
	T_SIGNED  reduce 58
	T_UNSIGNED  reduce 58
	T_ENUM  reduce 58
	T_STRUCT  reduce 58
	T_UNION  reduce 58
	T_Bool  reduce 58
	T_Complex  reduce 58
	T_Imaginary  reduce 58
	T_TYPE_QUALIFIER  reduce 58
	T_BRACKETS  reduce 58
	T_LBRACE  reduce 78
	T_VA_DCL  reduce 78
	';'  reduce 58
	','  reduce 58
	'='  reduce 78
	')'  reduce 58


state 7
	type_qualifier : T_DEFINE_NAME .  (62)

	.  reduce 62


state 8
	storage_class : T_AUTO .  (40)

	.  reduce 40


state 9
	linkage_specification : T_EXTERN . T_STRING_LITERAL braces  (13)
	linkage_specification : T_EXTERN . T_STRING_LITERAL declaration  (14)
	storage_class : T_EXTERN .  (41)

	T_STRING_LITERAL  shift 62
	'('  reduce 41
	'*'  reduce 41
	'&'  reduce 41
	T_IDENTIFIER  reduce 41
	T_TYPEDEF_NAME  reduce 41
	T_DEFINE_NAME  reduce 41
	T_AUTO  reduce 41
	T_EXTERN  reduce 41
	T_REGISTER  reduce 41
	T_STATIC  reduce 41
	T_INLINE  reduce 41
	T_EXTENSION  reduce 41
	T_CHAR  reduce 41
	T_DOUBLE  reduce 41
	T_FLOAT  reduce 41
	T_INT  reduce 41
	T_VOID  reduce 41
	T_LONG  reduce 41
	T_SHORT  reduce 41
	T_SIGNED  reduce 41
	T_UNSIGNED  reduce 41
	T_ENUM  reduce 41
	T_STRUCT  reduce 41
	T_UNION  reduce 41
	T_Bool  reduce 41
	T_Complex  reduce 41
	T_Imaginary  reduce 41
	T_TYPE_QUALIFIER  reduce 41
	';'  reduce 41


state 10
	storage_class : T_REGISTER .  (42)

	.  reduce 42


state 11
	storage_class : T_STATIC .  (43)

	.  reduce 43


state 12
	any_typedef : T_TYPEDEF .  (20)

	.  reduce 20


state 13
	storage_class : T_INLINE .  (44)

	.  reduce 44


state 14
	any_typedef : T_EXTENSION . T_TYPEDEF  (19)
	storage_class : T_EXTENSION .  (45)

	T_TYPEDEF  shift 63
	'('  reduce 45
	'*'  reduce 45
	'&'  reduce 45
	T_IDENTIFIER  reduce 45
	T_TYPEDEF_NAME  reduce 45
	T_DEFINE_NAME  reduce 45
	T_AUTO  reduce 45
	T_EXTERN  reduce 45
	T_REGISTER  reduce 45
	T_STATIC  reduce 45
	T_INLINE  reduce 45
	T_EXTENSION  reduce 45
	T_CHAR  reduce 45
	T_DOUBLE  reduce 45
	T_FLOAT  reduce 45
	T_INT  reduce 45
	T_VOID  reduce 45
	T_LONG  reduce 45
	T_SHORT  reduce 45
	T_SIGNED  reduce 45
	T_UNSIGNED  reduce 45
	T_ENUM  reduce 45
	T_STRUCT  reduce 45
	T_UNION  reduce 45
	T_Bool  reduce 45
	T_Complex  reduce 45
	T_Imaginary  reduce 45
	T_TYPE_QUALIFIER  reduce 45
	';'  reduce 45


state 15
	type_specifier : T_CHAR .  (46)

	.  reduce 46


state 16
	type_specifier : T_DOUBLE .  (47)

	.  reduce 47


state 17
	type_specifier : T_FLOAT .  (48)

	.  reduce 48


state 18
	type_specifier : T_INT .  (49)

	.  reduce 49


state 19
	type_specifier : T_VOID .  (54)

	.  reduce 54


state 20
	type_specifier : T_LONG .  (50)

	.  reduce 50


state 21
	type_specifier : T_SHORT .  (51)

	.  reduce 51


state 22
	type_specifier : T_SIGNED .  (52)

	.  reduce 52


state 23
	type_specifier : T_UNSIGNED .  (53)

	.  reduce 53


state 24
	enumeration : T_ENUM .  (76)

	.  reduce 76


state 25
	struct_or_union : T_STRUCT .  (66)

	.  reduce 66


state 26
	struct_or_union : T_UNION .  (67)

	.  reduce 67


state 27
	type_specifier : T_Bool .  (55)

	.  reduce 55


state 28
	type_specifier : T_Complex .  (56)

	.  reduce 56


state 29
	type_specifier : T_Imaginary .  (57)

	.  reduce 57


state 30
	type_qualifier : T_TYPE_QUALIFIER .  (61)

	.  reduce 61


state 31
	external_declaration : T_ASM . T_ASMARG ';'  (9)

	T_ASMARG  shift 64
	.  error


state 32
	external_declaration : ';' .  (7)

	.  reduce 7


state 33
	$accept : program . $end  (0)

	$end  accept


state 34
	declaration : decl_specifiers . ';'  (15)
	declaration : decl_specifiers . init_declarator_list ';'  (16)
	function_definition : decl_specifiers . declarator $$2 opt_declaration_list T_LBRACE $$3 T_MATCHRBRACE  (27)
	decl_specifiers : decl_specifiers . decl_specifier  (36)

	'('  shift 2
	'*'  shift 3
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 6
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_INLINE  shift 13
	T_EXTENSION  shift 66
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	';'  shift 67
	.  error

	decl_specifier  goto 68
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	init_declarator_list  goto 69
	init_declarator  goto 70
	declarator  goto 71
	direct_declarator  goto 42
	struct_or_union  goto 43
	pointer  goto 44
	any_id  goto 45
	identifier_or_ref  goto 46
	enumeration  goto 47


state 35
	decl_specifiers : decl_specifier .  (35)

	.  reduce 35


state 36
	decl_specifier : storage_class .  (37)

	.  reduce 37


state 37
	decl_specifier : type_specifier .  (38)

	.  reduce 38


state 38
	decl_specifier : type_qualifier .  (39)

	.  reduce 39


state 39
	type_specifier : struct_or_union_specifier .  (59)

	.  reduce 59


state 40
	type_specifier : enum_specifier .  (60)

	.  reduce 60


state 41
	function_definition : declarator . $$4 opt_declaration_list T_LBRACE T_MATCHRBRACE  (29)
	$$4 : .  (28)

	.  reduce 28

	$$4  goto 72


state 42
	declarator : direct_declarator .  (80)
	direct_declarator : direct_declarator . T_BRACKETS  (83)
	direct_declarator : direct_declarator . '(' parameter_type_list ')'  (84)
	direct_declarator : direct_declarator . '(' opt_identifier_list ')'  (85)

	'('  shift 73
	T_BRACKETS  shift 74
	T_TYPEDEF_NAME  reduce 80
	T_DEFINE_NAME  reduce 80
	T_AUTO  reduce 80
	T_EXTERN  reduce 80
	T_REGISTER  reduce 80
	T_STATIC  reduce 80
	T_TYPEDEF  reduce 80
	T_INLINE  reduce 80
	T_EXTENSION  reduce 80
	T_CHAR  reduce 80
	T_DOUBLE  reduce 80
	T_FLOAT  reduce 80
	T_INT  reduce 80
	T_VOID  reduce 80
	T_LONG  reduce 80
	T_SHORT  reduce 80
	T_SIGNED  reduce 80
	T_UNSIGNED  reduce 80
	T_ENUM  reduce 80
	T_STRUCT  reduce 80
	T_UNION  reduce 80
	T_Bool  reduce 80
	T_Complex  reduce 80
	T_Imaginary  reduce 80
	T_TYPE_QUALIFIER  reduce 80
	T_LBRACE  reduce 80
	T_VA_DCL  reduce 80
	';'  reduce 80
	','  reduce 80
	'='  reduce 80
	')'  reduce 80


state 43
	struct_or_union_specifier : struct_or_union . any_id braces  (63)
	struct_or_union_specifier : struct_or_union . braces  (64)
	struct_or_union_specifier : struct_or_union . any_id  (65)

	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 56
	T_LBRACE  shift 75
	.  error

	any_id  goto 76
	braces  goto 77


state 44
	declarator : pointer . direct_declarator  (79)

	'('  shift 2
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 56
	.  error

	direct_declarator  goto 78
	any_id  goto 45
	identifier_or_ref  goto 46


state 45
	identifier_or_ref : any_id .  (103)

	.  reduce 103


state 46
	direct_declarator : identifier_or_ref .  (81)

	.  reduce 81


state 47
	enum_specifier : enumeration . any_id braces  (73)
	enum_specifier : enumeration . braces  (74)
	enum_specifier : enumeration . any_id  (75)

	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 56
	T_LBRACE  shift 75
	.  error

	any_id  goto 79
	braces  goto 80


state 48
	program : translation_unit .  (2)
	translation_unit : translation_unit . external_declaration  (4)

	error  shift 1
	'('  shift 2
	'*'  shift 3
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 6
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 9
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_TYPEDEF  shift 12
	T_INLINE  shift 13
	T_EXTENSION  shift 14
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	T_ASM  shift 31
	';'  shift 32
	$end  reduce 2

	decl_specifiers  goto 34
	decl_specifier  goto 35
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	declarator  goto 41
	direct_declarator  goto 42
	struct_or_union  goto 43
	pointer  goto 44
	any_id  goto 45
	identifier_or_ref  goto 46
	enumeration  goto 47
	external_declaration  goto 81
	declaration  goto 50
	function_definition  goto 51
	linkage_specification  goto 52
	any_typedef  goto 53


state 49
	translation_unit : external_declaration .  (3)

	.  reduce 3


state 50
	external_declaration : declaration .  (5)

	.  reduce 5


state 51
	external_declaration : function_definition .  (6)

	.  reduce 6


state 52
	external_declaration : linkage_specification .  (8)

	.  reduce 8


state 53
	declaration : any_typedef . decl_specifiers $$1 opt_declarator_list ';'  (18)

	T_TYPEDEF_NAME  shift 82
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_INLINE  shift 13
	T_EXTENSION  shift 66
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	.  error

	decl_specifiers  goto 83
	decl_specifier  goto 35
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	struct_or_union  goto 43
	enumeration  goto 47


state 54
	external_declaration : error T_MATCHRBRACE .  (10)

	.  reduce 10


state 55
	external_declaration : error ';' .  (11)

	.  reduce 11


state 56
	any_id : T_TYPEDEF_NAME .  (78)

	.  reduce 78


state 57
	direct_declarator : '(' declarator . ')'  (82)

	')'  shift 84
	.  error


state 58
	type_qualifier_list : type_qualifier .  (90)

	.  reduce 90


state 59
	pointer : '*' opt_type_qualifiers .  (86)
	pointer : '*' opt_type_qualifiers . pointer  (87)

	'*'  shift 3
	'('  reduce 86
	'&'  reduce 86
	T_IDENTIFIER  reduce 86
	T_TYPEDEF_NAME  reduce 86
	T_BRACKETS  reduce 86
	','  reduce 86
	')'  reduce 86

	pointer  goto 85


state 60
	opt_type_qualifiers : type_qualifier_list .  (89)
	type_qualifier_list : type_qualifier_list . type_qualifier  (91)

	T_DEFINE_NAME  shift 7
	T_TYPE_QUALIFIER  shift 30
	'('  reduce 89
	'*'  reduce 89
	'&'  reduce 89
	T_IDENTIFIER  reduce 89
	T_TYPEDEF_NAME  reduce 89
	T_BRACKETS  reduce 89
	','  reduce 89
	')'  reduce 89

	type_qualifier  goto 86


state 61
	identifier_or_ref : '&' any_id .  (104)

	.  reduce 104


state 62
	linkage_specification : T_EXTERN T_STRING_LITERAL . braces  (13)
	linkage_specification : T_EXTERN T_STRING_LITERAL . declaration  (14)

	T_TYPEDEF_NAME  shift 82
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_TYPEDEF  shift 12
	T_INLINE  shift 13
	T_EXTENSION  shift 14
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	T_LBRACE  shift 75
	.  error

	decl_specifiers  goto 87
	decl_specifier  goto 35
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	struct_or_union  goto 43
	enumeration  goto 47
	declaration  goto 88
	braces  goto 89
	any_typedef  goto 53


state 63
	any_typedef : T_EXTENSION T_TYPEDEF .  (19)

	.  reduce 19


state 64
	external_declaration : T_ASM T_ASMARG . ';'  (9)

	';'  shift 90
	.  error


state 65
	storage_class : T_EXTERN .  (41)

	.  reduce 41


state 66
	storage_class : T_EXTENSION .  (45)

	.  reduce 45


state 67
	declaration : decl_specifiers ';' .  (15)

	.  reduce 15


state 68
	decl_specifiers : decl_specifiers decl_specifier .  (36)

	.  reduce 36


state 69
	declaration : decl_specifiers init_declarator_list . ';'  (16)
	init_declarator_list : init_declarator_list . ',' init_declarator  (69)

	';'  shift 91
	','  shift 92
	.  error


state 70
	init_declarator_list : init_declarator .  (68)

	.  reduce 68


state 71
	function_definition : decl_specifiers declarator . $$2 opt_declaration_list T_LBRACE $$3 T_MATCHRBRACE  (27)
	init_declarator : declarator .  (70)
	init_declarator : declarator . '=' $$5 T_INITIALIZER  (72)
	$$2 : .  (25)

	'='  shift 93
	T_TYPEDEF_NAME  reduce 25
	T_DEFINE_NAME  reduce 25
	T_AUTO  reduce 25
	T_EXTERN  reduce 25
	T_REGISTER  reduce 25
	T_STATIC  reduce 25
	T_TYPEDEF  reduce 25
	T_INLINE  reduce 25
	T_EXTENSION  reduce 25
	T_CHAR  reduce 25
	T_DOUBLE  reduce 25
	T_FLOAT  reduce 25
	T_INT  reduce 25
	T_VOID  reduce 25
	T_LONG  reduce 25
	T_SHORT  reduce 25
	T_SIGNED  reduce 25
	T_UNSIGNED  reduce 25
	T_ENUM  reduce 25
	T_STRUCT  reduce 25
	T_UNION  reduce 25
	T_Bool  reduce 25
	T_Complex  reduce 25
	T_Imaginary  reduce 25
	T_TYPE_QUALIFIER  reduce 25
	T_LBRACE  reduce 25
	T_VA_DCL  reduce 25
	';'  reduce 70
	','  reduce 70

	$$2  goto 94


state 72
	function_definition : declarator $$4 . opt_declaration_list T_LBRACE T_MATCHRBRACE  (29)
	opt_declaration_list : .  (30)

	T_TYPEDEF_NAME  shift 82
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_TYPEDEF  shift 12
	T_INLINE  shift 13
	T_EXTENSION  shift 14
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	T_VA_DCL  shift 95
	T_LBRACE  reduce 30

	decl_specifiers  goto 87
	decl_specifier  goto 35
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	struct_or_union  goto 43
	enumeration  goto 47
	declaration  goto 96
	any_typedef  goto 53
	opt_declaration_list  goto 97
	declaration_list  goto 98


state 73
	direct_declarator : direct_declarator '(' . parameter_type_list ')'  (84)
	direct_declarator : direct_declarator '(' . opt_identifier_list ')'  (85)
	opt_identifier_list : .  (99)

	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 6
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_INLINE  shift 13
	T_EXTENSION  shift 66
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	')'  reduce 99

	decl_specifiers  goto 99
	decl_specifier  goto 35
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	parameter_type_list  goto 100
	parameter_list  goto 101
	parameter_declaration  goto 102
	opt_identifier_list  goto 103
	identifier_list  goto 104
	struct_or_union  goto 43
	any_id  goto 105
	enumeration  goto 47


state 74
	direct_declarator : direct_declarator T_BRACKETS .  (83)

	.  reduce 83


state 75
	braces : T_LBRACE . T_MATCHRBRACE  (12)

	T_MATCHRBRACE  shift 106
	.  error


state 76
	struct_or_union_specifier : struct_or_union any_id . braces  (63)
	struct_or_union_specifier : struct_or_union any_id .  (65)

	T_LBRACE  shift 75
	'('  reduce 65
	'*'  reduce 65
	'&'  reduce 65
	T_IDENTIFIER  reduce 65
	T_TYPEDEF_NAME  reduce 65
	T_DEFINE_NAME  reduce 65
	T_AUTO  reduce 65
	T_EXTERN  reduce 65
	T_REGISTER  reduce 65
	T_STATIC  reduce 65
	T_INLINE  reduce 65
	T_EXTENSION  reduce 65
	T_CHAR  reduce 65
	T_DOUBLE  reduce 65
	T_FLOAT  reduce 65
	T_INT  reduce 65
	T_VOID  reduce 65
	T_LONG  reduce 65
	T_SHORT  reduce 65
	T_SIGNED  reduce 65
	T_UNSIGNED  reduce 65
	T_ENUM  reduce 65
	T_STRUCT  reduce 65
	T_UNION  reduce 65
	T_Bool  reduce 65
	T_Complex  reduce 65
	T_Imaginary  reduce 65
	T_TYPE_QUALIFIER  reduce 65
	T_BRACKETS  reduce 65
	';'  reduce 65
	','  reduce 65
	')'  reduce 65

	braces  goto 107


state 77
	struct_or_union_specifier : struct_or_union braces .  (64)

	.  reduce 64


state 78
	declarator : pointer direct_declarator .  (79)
	direct_declarator : direct_declarator . T_BRACKETS  (83)
	direct_declarator : direct_declarator . '(' parameter_type_list ')'  (84)
	direct_declarator : direct_declarator . '(' opt_identifier_list ')'  (85)

	'('  shift 73
	T_BRACKETS  shift 74
	T_TYPEDEF_NAME  reduce 79
	T_DEFINE_NAME  reduce 79
	T_AUTO  reduce 79
	T_EXTERN  reduce 79
	T_REGISTER  reduce 79
	T_STATIC  reduce 79
	T_TYPEDEF  reduce 79
	T_INLINE  reduce 79
	T_EXTENSION  reduce 79
	T_CHAR  reduce 79
	T_DOUBLE  reduce 79
	T_FLOAT  reduce 79
	T_INT  reduce 79
	T_VOID  reduce 79
	T_LONG  reduce 79
	T_SHORT  reduce 79
	T_SIGNED  reduce 79
	T_UNSIGNED  reduce 79
	T_ENUM  reduce 79
	T_STRUCT  reduce 79
	T_UNION  reduce 79
	T_Bool  reduce 79
	T_Complex  reduce 79
	T_Imaginary  reduce 79
	T_TYPE_QUALIFIER  reduce 79
	T_LBRACE  reduce 79
	T_VA_DCL  reduce 79
	';'  reduce 79
	','  reduce 79
	'='  reduce 79
	')'  reduce 79


state 79
	enum_specifier : enumeration any_id . braces  (73)
	enum_specifier : enumeration any_id .  (75)

	T_LBRACE  shift 75
	'('  reduce 75
	'*'  reduce 75
	'&'  reduce 75
	T_IDENTIFIER  reduce 75
	T_TYPEDEF_NAME  reduce 75
	T_DEFINE_NAME  reduce 75
	T_AUTO  reduce 75
	T_EXTERN  reduce 75
	T_REGISTER  reduce 75
	T_STATIC  reduce 75
	T_INLINE  reduce 75
	T_EXTENSION  reduce 75
	T_CHAR  reduce 75
	T_DOUBLE  reduce 75
	T_FLOAT  reduce 75
	T_INT  reduce 75
	T_VOID  reduce 75
	T_LONG  reduce 75
	T_SHORT  reduce 75
	T_SIGNED  reduce 75
	T_UNSIGNED  reduce 75
	T_ENUM  reduce 75
	T_STRUCT  reduce 75
	T_UNION  reduce 75
	T_Bool  reduce 75
	T_Complex  reduce 75
	T_Imaginary  reduce 75
	T_TYPE_QUALIFIER  reduce 75
	T_BRACKETS  reduce 75
	';'  reduce 75
	','  reduce 75
	')'  reduce 75

	braces  goto 108


state 80
	enum_specifier : enumeration braces .  (74)

	.  reduce 74


state 81
	translation_unit : translation_unit external_declaration .  (4)

	.  reduce 4


state 82
	type_specifier : T_TYPEDEF_NAME .  (58)

	.  reduce 58


83: shift/reduce conflict (shift 82, reduce 17) on T_TYPEDEF_NAME
state 83
	declaration : any_typedef decl_specifiers . $$1 opt_declarator_list ';'  (18)
	decl_specifiers : decl_specifiers . decl_specifier  (36)
	$$1 : .  (17)

	T_TYPEDEF_NAME  shift 82
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_INLINE  shift 13
	T_EXTENSION  shift 66
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	'('  reduce 17
	'*'  reduce 17
	'&'  reduce 17
	T_IDENTIFIER  reduce 17
	';'  reduce 17

	decl_specifier  goto 68
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	struct_or_union  goto 43
	enumeration  goto 47
	$$1  goto 109


state 84
	direct_declarator : '(' declarator ')' .  (82)

	.  reduce 82


state 85
	pointer : '*' opt_type_qualifiers pointer .  (87)

	.  reduce 87


state 86
	type_qualifier_list : type_qualifier_list type_qualifier .  (91)

	.  reduce 91


state 87
	declaration : decl_specifiers . ';'  (15)
	declaration : decl_specifiers . init_declarator_list ';'  (16)
	decl_specifiers : decl_specifiers . decl_specifier  (36)

	'('  shift 2
	'*'  shift 3
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 6
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_INLINE  shift 13
	T_EXTENSION  shift 66
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	';'  shift 67
	.  error

	decl_specifier  goto 68
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	init_declarator_list  goto 69
	init_declarator  goto 70
	declarator  goto 110
	direct_declarator  goto 42
	struct_or_union  goto 43
	pointer  goto 44
	any_id  goto 45
	identifier_or_ref  goto 46
	enumeration  goto 47


state 88
	linkage_specification : T_EXTERN T_STRING_LITERAL declaration .  (14)

	.  reduce 14


state 89
	linkage_specification : T_EXTERN T_STRING_LITERAL braces .  (13)

	.  reduce 13


state 90
	external_declaration : T_ASM T_ASMARG ';' .  (9)

	.  reduce 9


state 91
	declaration : decl_specifiers init_declarator_list ';' .  (16)

	.  reduce 16


state 92
	init_declarator_list : init_declarator_list ',' . init_declarator  (69)

	'('  shift 2
	'*'  shift 3
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 56
	.  error

	init_declarator  goto 111
	declarator  goto 110
	direct_declarator  goto 42
	pointer  goto 44
	any_id  goto 45
	identifier_or_ref  goto 46


state 93
	init_declarator : declarator '=' . $$5 T_INITIALIZER  (72)
	$$5 : .  (71)

	.  reduce 71

	$$5  goto 112


state 94
	function_definition : decl_specifiers declarator $$2 . opt_declaration_list T_LBRACE $$3 T_MATCHRBRACE  (27)
	opt_declaration_list : .  (30)

	T_TYPEDEF_NAME  shift 82
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_TYPEDEF  shift 12
	T_INLINE  shift 13
	T_EXTENSION  shift 14
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	T_VA_DCL  shift 95
	T_LBRACE  reduce 30

	decl_specifiers  goto 87
	decl_specifier  goto 35
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	struct_or_union  goto 43
	enumeration  goto 47
	declaration  goto 96
	any_typedef  goto 53
	opt_declaration_list  goto 113
	declaration_list  goto 98


state 95
	opt_declaration_list : T_VA_DCL .  (31)

	.  reduce 31


state 96
	declaration_list : declaration .  (33)

	.  reduce 33


state 97
	function_definition : declarator $$4 opt_declaration_list . T_LBRACE T_MATCHRBRACE  (29)

	T_LBRACE  shift 114
	.  error


state 98
	opt_declaration_list : declaration_list .  (32)
	declaration_list : declaration_list . declaration  (34)

	T_TYPEDEF_NAME  shift 82
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_TYPEDEF  shift 12
	T_INLINE  shift 13
	T_EXTENSION  shift 14
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	T_LBRACE  reduce 32

	decl_specifiers  goto 87
	decl_specifier  goto 35
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	struct_or_union  goto 43
	enumeration  goto 47
	declaration  goto 115
	any_typedef  goto 53


state 99
	decl_specifiers : decl_specifiers . decl_specifier  (36)
	parameter_declaration : decl_specifiers . declarator  (96)
	parameter_declaration : decl_specifiers . abs_declarator  (97)
	parameter_declaration : decl_specifiers .  (98)

	'('  shift 116
	'*'  shift 3
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 6
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_INLINE  shift 13
	T_EXTENSION  shift 66
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	T_BRACKETS  shift 117
	','  reduce 98
	')'  reduce 98

	decl_specifier  goto 68
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	declarator  goto 118
	direct_declarator  goto 42
	abs_declarator  goto 119
	direct_abs_declarator  goto 120
	struct_or_union  goto 43
	pointer  goto 121
	any_id  goto 45
	identifier_or_ref  goto 46
	enumeration  goto 47


state 100
	direct_declarator : direct_declarator '(' parameter_type_list . ')'  (84)

	')'  shift 122
	.  error


state 101
	parameter_type_list : parameter_list .  (92)
	parameter_type_list : parameter_list . ',' T_ELLIPSIS  (93)
	parameter_list : parameter_list . ',' parameter_declaration  (95)

	','  shift 123
	')'  reduce 92


state 102
	parameter_list : parameter_declaration .  (94)

	.  reduce 94


state 103
	direct_declarator : direct_declarator '(' opt_identifier_list . ')'  (85)

	')'  shift 124
	.  error


state 104
	opt_identifier_list : identifier_list .  (100)
	identifier_list : identifier_list . ',' any_id  (102)

	','  shift 125
	')'  reduce 100


state 105
	identifier_list : any_id .  (101)

	.  reduce 101


state 106
	braces : T_LBRACE T_MATCHRBRACE .  (12)

	.  reduce 12


state 107
	struct_or_union_specifier : struct_or_union any_id braces .  (63)

	.  reduce 63


state 108
	enum_specifier : enumeration any_id braces .  (73)

	.  reduce 73


state 109
	declaration : any_typedef decl_specifiers $$1 . opt_declarator_list ';'  (18)
	opt_declarator_list : .  (21)

	'('  shift 2
	'*'  shift 3
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 56
	';'  reduce 21

	declarator  goto 126
	direct_declarator  goto 42
	pointer  goto 44
	any_id  goto 45
	identifier_or_ref  goto 46
	opt_declarator_list  goto 127
	declarator_list  goto 128


state 110
	init_declarator : declarator .  (70)
	init_declarator : declarator . '=' $$5 T_INITIALIZER  (72)

	'='  shift 93
	';'  reduce 70
	','  reduce 70


state 111
	init_declarator_list : init_declarator_list ',' init_declarator .  (69)

	.  reduce 69


state 112
	init_declarator : declarator '=' $$5 . T_INITIALIZER  (72)

	T_INITIALIZER  shift 129
	.  error


state 113
	function_definition : decl_specifiers declarator $$2 opt_declaration_list . T_LBRACE $$3 T_MATCHRBRACE  (27)

	T_LBRACE  shift 130
	.  error


state 114
	function_definition : declarator $$4 opt_declaration_list T_LBRACE . T_MATCHRBRACE  (29)

	T_MATCHRBRACE  shift 131
	.  error


state 115
	declaration_list : declaration_list declaration .  (34)

	.  reduce 34


state 116
	direct_declarator : '(' . declarator ')'  (82)
	direct_abs_declarator : '(' . abs_declarator ')'  (108)
	direct_abs_declarator : '(' . parameter_type_list ')'  (113)
	direct_abs_declarator : '(' . ')'  (114)

	'('  shift 116
	'*'  shift 3
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 6
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_INLINE  shift 13
	T_EXTENSION  shift 66
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	T_BRACKETS  shift 117
	')'  shift 132
	.  error

	decl_specifiers  goto 99
	decl_specifier  goto 35
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	declarator  goto 57
	direct_declarator  goto 42
	abs_declarator  goto 133
	direct_abs_declarator  goto 120
	parameter_type_list  goto 134
	parameter_list  goto 101
	parameter_declaration  goto 102
	struct_or_union  goto 43
	pointer  goto 121
	any_id  goto 45
	identifier_or_ref  goto 46
	enumeration  goto 47


state 117
	direct_abs_declarator : T_BRACKETS .  (110)

	.  reduce 110


state 118
	parameter_declaration : decl_specifiers declarator .  (96)

	.  reduce 96


state 119
	parameter_declaration : decl_specifiers abs_declarator .  (97)

	.  reduce 97


state 120
	abs_declarator : direct_abs_declarator .  (107)
	direct_abs_declarator : direct_abs_declarator . T_BRACKETS  (109)
	direct_abs_declarator : direct_abs_declarator . '(' parameter_type_list ')'  (111)
	direct_abs_declarator : direct_abs_declarator . '(' ')'  (112)

	'('  shift 135
	T_BRACKETS  shift 136
	','  reduce 107
	')'  reduce 107


state 121
	declarator : pointer . direct_declarator  (79)
	abs_declarator : pointer .  (105)
	abs_declarator : pointer . direct_abs_declarator  (106)

	'('  shift 116
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 56
	T_BRACKETS  shift 117
	','  reduce 105
	')'  reduce 105

	direct_declarator  goto 78
	direct_abs_declarator  goto 137
	any_id  goto 45
	identifier_or_ref  goto 46


state 122
	direct_declarator : direct_declarator '(' parameter_type_list ')' .  (84)

	.  reduce 84


state 123
	parameter_type_list : parameter_list ',' . T_ELLIPSIS  (93)
	parameter_list : parameter_list ',' . parameter_declaration  (95)

	T_TYPEDEF_NAME  shift 82
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_INLINE  shift 13
	T_EXTENSION  shift 66
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	T_ELLIPSIS  shift 138
	.  error

	decl_specifiers  goto 99
	decl_specifier  goto 35
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	parameter_declaration  goto 139
	struct_or_union  goto 43
	enumeration  goto 47


state 124
	direct_declarator : direct_declarator '(' opt_identifier_list ')' .  (85)

	.  reduce 85


state 125
	identifier_list : identifier_list ',' . any_id  (102)

	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 56
	.  error

	any_id  goto 140


state 126
	declarator_list : declarator .  (23)

	.  reduce 23


state 127
	declaration : any_typedef decl_specifiers $$1 opt_declarator_list . ';'  (18)

	';'  shift 141
	.  error


state 128
	opt_declarator_list : declarator_list .  (22)
	declarator_list : declarator_list . ',' declarator  (24)

	','  shift 142
	';'  reduce 22


state 129
	init_declarator : declarator '=' $$5 T_INITIALIZER .  (72)

	.  reduce 72


state 130
	function_definition : decl_specifiers declarator $$2 opt_declaration_list T_LBRACE . $$3 T_MATCHRBRACE  (27)
	$$3 : .  (26)

	.  reduce 26

	$$3  goto 143


state 131
	function_definition : declarator $$4 opt_declaration_list T_LBRACE T_MATCHRBRACE .  (29)

	.  reduce 29


state 132
	direct_abs_declarator : '(' ')' .  (114)

	.  reduce 114


state 133
	direct_abs_declarator : '(' abs_declarator . ')'  (108)

	')'  shift 144
	.  error


state 134
	direct_abs_declarator : '(' parameter_type_list . ')'  (113)

	')'  shift 145
	.  error


state 135
	direct_abs_declarator : direct_abs_declarator '(' . parameter_type_list ')'  (111)
	direct_abs_declarator : direct_abs_declarator '(' . ')'  (112)

	T_TYPEDEF_NAME  shift 82
	T_DEFINE_NAME  shift 7
	T_AUTO  shift 8
	T_EXTERN  shift 65
	T_REGISTER  shift 10
	T_STATIC  shift 11
	T_INLINE  shift 13
	T_EXTENSION  shift 66
	T_CHAR  shift 15
	T_DOUBLE  shift 16
	T_FLOAT  shift 17
	T_INT  shift 18
	T_VOID  shift 19
	T_LONG  shift 20
	T_SHORT  shift 21
	T_SIGNED  shift 22
	T_UNSIGNED  shift 23
	T_ENUM  shift 24
	T_STRUCT  shift 25
	T_UNION  shift 26
	T_Bool  shift 27
	T_Complex  shift 28
	T_Imaginary  shift 29
	T_TYPE_QUALIFIER  shift 30
	')'  shift 146
	.  error

	decl_specifiers  goto 99
	decl_specifier  goto 35
	storage_class  goto 36
	type_specifier  goto 37
	type_qualifier  goto 38
	struct_or_union_specifier  goto 39
	enum_specifier  goto 40
	parameter_type_list  goto 147
	parameter_list  goto 101
	parameter_declaration  goto 102
	struct_or_union  goto 43
	enumeration  goto 47


state 136
	direct_abs_declarator : direct_abs_declarator T_BRACKETS .  (109)

	.  reduce 109


state 137
	abs_declarator : pointer direct_abs_declarator .  (106)
	direct_abs_declarator : direct_abs_declarator . T_BRACKETS  (109)
	direct_abs_declarator : direct_abs_declarator . '(' parameter_type_list ')'  (111)
	direct_abs_declarator : direct_abs_declarator . '(' ')'  (112)

	'('  shift 135
	T_BRACKETS  shift 136
	','  reduce 106
	')'  reduce 106


state 138
	parameter_type_list : parameter_list ',' T_ELLIPSIS .  (93)

	.  reduce 93


state 139
	parameter_list : parameter_list ',' parameter_declaration .  (95)

	.  reduce 95


state 140
	identifier_list : identifier_list ',' any_id .  (102)

	.  reduce 102


state 141
	declaration : any_typedef decl_specifiers $$1 opt_declarator_list ';' .  (18)

	.  reduce 18


state 142
	declarator_list : declarator_list ',' . declarator  (24)

	'('  shift 2
	'*'  shift 3
	'&'  shift 4
	T_IDENTIFIER  shift 5
	T_TYPEDEF_NAME  shift 56
	.  error

	declarator  goto 148
	direct_declarator  goto 42
	pointer  goto 44
	any_id  goto 45
	identifier_or_ref  goto 46


state 143
	function_definition : decl_specifiers declarator $$2 opt_declaration_list T_LBRACE $$3 . T_MATCHRBRACE  (27)

	T_MATCHRBRACE  shift 149
	.  error


state 144
	direct_abs_declarator : '(' abs_declarator ')' .  (108)

	.  reduce 108


state 145
	direct_abs_declarator : '(' parameter_type_list ')' .  (113)

	.  reduce 113


state 146
	direct_abs_declarator : direct_abs_declarator '(' ')' .  (112)

	.  reduce 112


state 147
	direct_abs_declarator : direct_abs_declarator '(' parameter_type_list . ')'  (111)

	')'  shift 150
	.  error


state 148
	declarator_list : declarator_list ',' declarator .  (24)

	.  reduce 24


state 149
	function_definition : decl_specifiers declarator $$2 opt_declaration_list T_LBRACE $$3 T_MATCHRBRACE .  (27)

	.  reduce 27


state 150
	direct_abs_declarator : direct_abs_declarator '(' parameter_type_list ')' .  (111)

	.  reduce 111


State 6 contains 29 reduce/reduce conflicts.
State 83 contains 1 shift/reduce conflict.


44 terminals, 43 nonterminals
115 grammar rules, 151 states
OpenPOWER on IntegriCloud