mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-19 01:03:04 +00:00
regen
This commit is contained in:
1128
src/parse-gram.c
1128
src/parse-gram.c
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
|||||||
/* A Bison parser, made by GNU Bison 2.6.5.977-6d58-dirty. */
|
/* A Bison parser, made by GNU Bison 2.7.980-6f0a6-dirty. */
|
||||||
|
|
||||||
/* Bison interface for Yacc-like parsers in C
|
/* Bison interface for Yacc-like parsers in C
|
||||||
|
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
#ifndef YY_GRAM_SRC_PARSE_GRAM_H_INCLUDED
|
#ifndef YY_GRAM_SRC_PARSE_GRAM_H_INCLUDED
|
||||||
# define YY_GRAM_SRC_PARSE_GRAM_H_INCLUDED
|
# define YY_GRAM_SRC_PARSE_GRAM_H_INCLUDED
|
||||||
/* Enabling traces. */
|
/* Debug traces. */
|
||||||
#ifndef GRAM_DEBUG
|
#ifndef GRAM_DEBUG
|
||||||
# if defined YYDEBUG
|
# if defined YYDEBUG
|
||||||
#if YYDEBUG
|
#if YYDEBUG
|
||||||
@@ -48,7 +48,7 @@
|
|||||||
extern int gram_debug;
|
extern int gram_debug;
|
||||||
#endif
|
#endif
|
||||||
/* "%code requires" blocks. */
|
/* "%code requires" blocks. */
|
||||||
/* Line 1931 of yacc.c */
|
/* Line 1930 of yacc.c */
|
||||||
#line 223 "src/parse-gram.y"
|
#line 223 "src/parse-gram.y"
|
||||||
|
|
||||||
# ifndef PARAM_TYPE
|
# ifndef PARAM_TYPE
|
||||||
@@ -63,14 +63,12 @@ extern int gram_debug;
|
|||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
|
||||||
/* Line 1931 of yacc.c */
|
/* Line 1930 of yacc.c */
|
||||||
#line 68 "src/parse-gram.h"
|
#line 68 "src/parse-gram.h"
|
||||||
|
|
||||||
/* Tokens. */
|
/* Token type. */
|
||||||
#ifndef GRAM_TOKENTYPE
|
#ifndef GRAM_TOKENTYPE
|
||||||
# define GRAM_TOKENTYPE
|
# define GRAM_TOKENTYPE
|
||||||
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
|
||||||
know about them. */
|
|
||||||
enum gram_tokentype
|
enum gram_tokentype
|
||||||
{
|
{
|
||||||
GRAM_EOF = 0,
|
GRAM_EOF = 0,
|
||||||
@@ -187,10 +185,12 @@ extern int gram_debug;
|
|||||||
#define PERCENT_PARAM 310
|
#define PERCENT_PARAM 310
|
||||||
#define PERCENT_UNION 311
|
#define PERCENT_UNION 311
|
||||||
|
|
||||||
|
/* Value type. */
|
||||||
#if ! defined GRAM_STYPE && ! defined GRAM_STYPE_IS_DECLARED
|
#if ! defined GRAM_STYPE && ! defined GRAM_STYPE_IS_DECLARED
|
||||||
typedef union GRAM_STYPE
|
typedef union GRAM_STYPE GRAM_STYPE;
|
||||||
|
union GRAM_STYPE
|
||||||
{
|
{
|
||||||
/* Line 1931 of yacc.c */
|
/* Line 1930 of yacc.c */
|
||||||
#line 109 "src/parse-gram.y"
|
#line 109 "src/parse-gram.y"
|
||||||
|
|
||||||
assoc assoc;
|
assoc assoc;
|
||||||
@@ -203,35 +203,38 @@ typedef union GRAM_STYPE
|
|||||||
uniqstr uniqstr;
|
uniqstr uniqstr;
|
||||||
unsigned char character;
|
unsigned char character;
|
||||||
|
|
||||||
/* Line 1931 of yacc.c */
|
/* Line 1930 of yacc.c */
|
||||||
#line 247 "src/parse-gram.y"
|
#line 247 "src/parse-gram.y"
|
||||||
|
|
||||||
param_type param;
|
param_type param;
|
||||||
|
|
||||||
/* Line 1931 of yacc.c */
|
/* Line 1930 of yacc.c */
|
||||||
#line 423 "src/parse-gram.y"
|
#line 423 "src/parse-gram.y"
|
||||||
code_props_type code_type;
|
code_props_type code_type;
|
||||||
|
|
||||||
/* Line 1931 of yacc.c */
|
/* Line 1930 of yacc.c */
|
||||||
#line 217 "src/parse-gram.h"
|
#line 217 "src/parse-gram.h"
|
||||||
} GRAM_STYPE;
|
};
|
||||||
# define GRAM_STYPE_IS_TRIVIAL 1
|
# define GRAM_STYPE_IS_TRIVIAL 1
|
||||||
# define GRAM_STYPE_IS_DECLARED 1
|
# define GRAM_STYPE_IS_DECLARED 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Location type. */
|
||||||
#if ! defined GRAM_LTYPE && ! defined GRAM_LTYPE_IS_DECLARED
|
#if ! defined GRAM_LTYPE && ! defined GRAM_LTYPE_IS_DECLARED
|
||||||
typedef struct GRAM_LTYPE
|
typedef struct GRAM_LTYPE GRAM_LTYPE;
|
||||||
|
struct GRAM_LTYPE
|
||||||
{
|
{
|
||||||
int first_line;
|
int first_line;
|
||||||
int first_column;
|
int first_column;
|
||||||
int last_line;
|
int last_line;
|
||||||
int last_column;
|
int last_column;
|
||||||
} GRAM_LTYPE;
|
};
|
||||||
# define GRAM_LTYPE_IS_DECLARED 1
|
# define GRAM_LTYPE_IS_DECLARED 1
|
||||||
# define GRAM_LTYPE_IS_TRIVIAL 1
|
# define GRAM_LTYPE_IS_TRIVIAL 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int gram_parse (void);
|
int gram_parse (void);
|
||||||
|
|
||||||
#endif /* !YY_GRAM_SRC_PARSE_GRAM_H_INCLUDED */
|
#endif /* !YY_GRAM_SRC_PARSE_GRAM_H_INCLUDED */
|
||||||
|
|||||||
Reference in New Issue
Block a user