#include <stdio.h>
static void yyerror (char const *);
static int yylex (void);
- static void print_look_ahead (char const *);
+ static void print_lookahead (char const *);
#define USE(value)
%}
start:
defstate_init defstate_shift 'b' change_lookahead 'a' {
USE ($3);
- print_look_ahead ("start <- defstate_init defstate_shift 'b'");
+ print_lookahead ("start <- defstate_init defstate_shift 'b'");
}
;
defstate_init:
{
- print_look_ahead ("defstate_init <- empty string");
+ print_lookahead ("defstate_init <- empty string");
}
;
defstate_shift:
nondefstate defstate_look 'a' {
USE ($3);
- print_look_ahead ("defstate_shift <- nondefstate defstate_look 'a'");
+ print_lookahead ("defstate_shift <- nondefstate defstate_look 'a'");
}
;
defstate_look:
{
- print_look_ahead ("defstate_look <- empty string");
+ print_lookahead ("defstate_look <- empty string");
}
;
nondefstate:
{
- print_look_ahead ("nondefstate <- empty string");
+ print_lookahead ("nondefstate <- empty string");
}
| 'b' {
USE ($1);
- print_look_ahead ("nondefstate <- 'b'");
+ print_lookahead ("nondefstate <- 'b'");
}
;
change_lookahead:
}
static void
-print_look_ahead (char const *reduction)
+print_lookahead (char const *reduction)
{
printf ("%s:\n yychar=", reduction);
if (yychar == YYEMPTY)
#include <stdio.h>
static void yyerror (char const *);
static int yylex (void);
- static void print_look_ahead (char const *);
+ static void print_lookahead (char const *);
static char merge (union YYSTYPE, union YYSTYPE);
#define USE(value)
%}
start:
merge 'c' stack_explosion {
USE ($2); USE ($3);
- print_look_ahead ("start <- merge 'c' stack_explosion");
+ print_lookahead ("start <- merge 'c' stack_explosion");
}
;
merge:
nonconflict1 'a' 'b' nonconflict2 %dprec 1 {
USE ($2); USE ($3);
- print_look_ahead ("merge <- nonconflict1 'a' 'b' nonconflict2");
+ print_lookahead ("merge <- nonconflict1 'a' 'b' nonconflict2");
}
| conflict defstate_look 'a' nonconflict2 'b' defstate_shift %dprec 2 {
USE ($3); USE ($5);
- print_look_ahead ("merge <- conflict defstate_look 'a' nonconflict2 'b'"
+ print_lookahead ("merge <- conflict defstate_look 'a' nonconflict2 'b'"
" defstate_shift");
}
;
nonconflict1:
{
- print_look_ahead ("nonconflict1 <- empty string");
+ print_lookahead ("nonconflict1 <- empty string");
}
;
nonconflict2:
{
- print_look_ahead ("nonconflict2 <- empty string");
+ print_lookahead ("nonconflict2 <- empty string");
}
| 'a' {
USE ($1);
- print_look_ahead ("nonconflict2 <- 'a'");
+ print_lookahead ("nonconflict2 <- 'a'");
}
;
conflict:
{
- print_look_ahead ("conflict <- empty string");
+ print_lookahead ("conflict <- empty string");
}
;
defstate_look:
{
- print_look_ahead ("defstate_look <- empty string");
+ print_lookahead ("defstate_look <- empty string");
}
;
/* yychar != YYEMPTY but lookahead need is yyfalse. */
defstate_shift:
{
- print_look_ahead ("defstate_shift <- empty string");
+ print_lookahead ("defstate_shift <- empty string");
}
;
}
static void
-print_look_ahead (char const *reduction)
+print_lookahead (char const *reduction)
{
printf ("%s:\n yychar=", reduction);
if (yychar == YYEMPTY)
%%
+/* Tests the case of an empty RHS that has inherited the location of the
+ previous nonterminal, which is unresolved. That location is reported as the
+ last position of the ambiguity. */
+start: ambig1 empty1 | ambig2 empty2 ;
+
/* Tests multiple levels of yyresolveLocations recursion. */
-start: ambig1 | ambig2 ;
ambig1: sub_ambig1 | sub_ambig2 ;
ambig2: sub_ambig1 | sub_ambig2 ;
-/* Tests non-empty RHS as well as empty RHS with either initial location or
- location of previous token. Both empty RHS locations are printed in the
- error message. */
-sub_ambig1: empty 'a' 'b' empty ;
-sub_ambig2: empty 'a' 'b' empty ;
-empty: ;
+/* Tests the case of a non-empty RHS as well as the case of an empty RHS that
+ has inherited the initial location. The empty RHS's location is reported as
+ the first position in the ambiguity. */
+sub_ambig1: empty1 'a' 'b' ;
+sub_ambig2: empty2 'a' 'b' ;
+empty1: ;
+empty2: ;
%%
])
AT_CLEANUP
+
+
+## -------------------------------------------------------------##
+## Missed %merge type warnings when LHS type is declared later. ##
+## -------------------------------------------------------------##
+
+AT_SETUP([Missed %merge type warnings when LHS type is declared later])
+AT_DATA_GRAMMAR([glr-regr18.y],
+[[%glr-parser
+
+%{
+ static void yyerror (char const *);
+ static int yylex ();
+%}
+
+%union {
+ int type1;
+ int type2;
+ int type3;
+}
+
+%%
+
+sym1: sym2 %merge<merge> { $$ = $1; } ;
+sym2: sym3 %merge<merge> { $$ = $1; } ;
+sym3: %merge<merge> { $$ = 0; } ;
+
+%type <type1> sym1;
+%type <type2> sym2;
+%type <type3> sym3;
+
+%%
+
+static void
+yyerror (char const *msg)
+{
+ fprintf (stderr, "%s\n", msg);
+}
+
+static int
+yylex ()
+{
+ return 0;
+}
+
+int
+main (void)
+{
+ return yyparse ();
+}
+]])
+
+AT_CHECK([[bison -o glr-regr18.c glr-regr18.y]], 1, [],
+[glr-regr18.y:27.18-24: result type clash on merge function `merge': <type2> != <type1>
+glr-regr18.y:26.18-24: previous declaration
+glr-regr18.y:28.13-19: result type clash on merge function `merge': <type3> != <type2>
+glr-regr18.y:27.18-24: previous declaration
+])
+
+AT_CLEANUP