# Bison managed, when fed with `%token 'f' "f"' to #define 'f'!
AT_DATA_GRAMMAR([input.y],
[%{
+#include <stdlib.h>
#include <stdio.h>
void yyerror (const char *s);
int yylex (void);
int
yylex (void)
{
+ static int called;
+ if (called++)
+ abort ();
return SPECIAL;
}
[%{
static int yylex (AT_LALR1_CC_IF([int *], [void]));
AT_LALR1_CC_IF([],
-[#include <stdio.h>
+[#include <stdlib.h>
+#include <stdio.h>
static void yyerror (const char *);])
%}
$1
yyparse ()
{
yy::parser parser;
- parser.set_debug_level (!!YYDEBUG);
+#if YYDEBUG
+ parser.set_debug_level (YYDEBUG);
+#endif
return parser.parse ();
}
],
static int
yylex (AT_LALR1_CC_IF([int *lval], [void]))
[{
- static int toknum = 0;
- static int tokens[] =
+ static int const tokens[] =
{
':', -1
};
+ static size_t toknum;
]AT_LALR1_CC_IF([*lval = 0; /* Pacify GCC. */])[
+ if (! (toknum < sizeof tokens / sizeof *tokens))
+ abort ();
return tokens[toknum++];
}]
static int yylex (AT_LALR1_CC_IF([int *], [void]));
AT_LALR1_CC_IF([],
[#include <stdio.h>
+#include <stdlib.h>
static void yyerror (const char *);])
%}
$1
static int
yylex (AT_LALR1_CC_IF([int *lval], [void]))
[{
- static int toknum = 0;
- static int tokens[] =
+ static int const tokens[] =
{
1000, '+', '+', -1
};
+ static size_t toknum;
]AT_LALR1_CC_IF([*lval = 0; /* Pacify GCC. */])[
+ if (! (toknum < sizeof tokens / sizeof *tokens))
+ abort ();
return tokens[toknum++];
}]
]],
[[Starting parse
Entering state 0
-Reducing stack by rule 1 (line 22):
+Reducing stack by rule 1 (line 20):
-> $$ = nterm start ()
Stack now 0
Entering state 1