Skip to content

Commit bc27793

Browse files
committed
regen
1 parent f5670e6 commit bc27793

File tree

2 files changed

+16
-22
lines changed

2 files changed

+16
-22
lines changed

src/parse-gram.c

Lines changed: 15 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* A Bison parser, made by GNU Bison 3.6.90. */
1+
/* A Bison parser, made by GNU Bison 3.6.90.7-a0e3b-dirty. */
22

33
/* Bison implementation for Yacc-like parsers in C
44
@@ -49,7 +49,7 @@
4949
#define YYBISON 1
5050

5151
/* Bison version. */
52-
#define YYBISON_VERSION "3.6.90"
52+
#define YYBISON_VERSION "3.6.90.7-a0e3b-dirty"
5353

5454
/* Skeleton name. */
5555
#define YYSKELETON_NAME "yacc.c"
@@ -642,16 +642,16 @@ static const yytype_int16 yyrline[] =
642642
0, 312, 312, 321, 322, 326, 327, 333, 337, 342,
643643
343, 344, 345, 346, 347, 348, 353, 358, 359, 360,
644644
361, 362, 363, 363, 364, 365, 366, 367, 368, 369,
645-
370, 371, 375, 376, 385, 386, 390, 401, 405, 409,
646-
417, 427, 428, 438, 439, 445, 458, 458, 463, 463,
647-
468, 472, 482, 483, 484, 485, 489, 490, 495, 496,
648-
500, 501, 505, 506, 507, 520, 529, 533, 537, 545,
649-
546, 550, 563, 564, 569, 570, 571, 589, 593, 597,
650-
605, 607, 612, 619, 629, 633, 637, 645, 650, 662,
651-
663, 669, 670, 671, 678, 678, 686, 687, 688, 693,
652-
696, 698, 700, 702, 704, 706, 708, 710, 712, 717,
653-
718, 727, 751, 752, 753, 754, 766, 768, 792, 797,
654-
798, 803, 811, 812
645+
370, 371, 375, 376, 385, 386, 390, 399, 403, 407,
646+
415, 425, 426, 436, 437, 443, 456, 456, 461, 461,
647+
466, 470, 480, 481, 482, 483, 487, 488, 493, 494,
648+
498, 499, 503, 504, 505, 518, 527, 531, 535, 543,
649+
544, 548, 561, 562, 567, 568, 569, 587, 591, 595,
650+
603, 605, 610, 617, 627, 631, 635, 643, 648, 660,
651+
661, 667, 668, 669, 676, 676, 684, 685, 686, 691,
652+
694, 696, 698, 700, 702, 704, 706, 708, 710, 715,
653+
716, 725, 749, 750, 751, 752, 764, 766, 790, 795,
654+
796, 801, 809, 810
655655
};
656656
#endif
657657

@@ -2187,11 +2187,9 @@ YYLTYPE yylloc = yyloc_default;
21872187
code_props code;
21882188
code_props_symbol_action_init (&code, (yyvsp[-1].BRACED_CODE), (yylsp[-1]));
21892189
code_props_translate_code (&code);
2190-
{
2191-
for (symbol_list *list = (yyvsp[0].generic_symlist); list; list = list->next)
2192-
symbol_list_code_props_set (list, (yyvsp[-2].code_props_type), &code);
2193-
symbol_list_free ((yyvsp[0].generic_symlist));
2194-
}
2190+
for (symbol_list *list = (yyvsp[0].generic_symlist); list; list = list->next)
2191+
symbol_list_code_props_set (list, (yyvsp[-2].code_props_type), &code);
2192+
symbol_list_free ((yyvsp[0].generic_symlist));
21952193
}
21962194
break;
21972195

@@ -2307,10 +2305,6 @@ YYLTYPE yylloc = yyloc_default;
23072305
{ (yyval.yykind_74) = NULL; }
23082306
break;
23092307

2310-
case 57: /* tag.opt: "<tag>" */
2311-
{ (yyval.yykind_74) = (yyvsp[0].TAG); }
2312-
break;
2313-
23142308
case 59: /* generic_symlist: generic_symlist generic_symlist_item */
23152309
{ (yyval.generic_symlist) = symbol_list_append ((yyvsp[-1].generic_symlist), (yyvsp[0].generic_symlist_item)); }
23162310
break;

src/parse-gram.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* A Bison parser, made by GNU Bison 3.6.90. */
1+
/* A Bison parser, made by GNU Bison 3.6.90.7-a0e3b-dirty. */
22

33
/* Bison interface for Yacc-like parsers in C
44

0 commit comments

Comments
 (0)