Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
0359de7d
Commit
0359de7d
authored
Oct 11, 2011
by
Michal Marek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
genksyms: Regenerate lexer and parser
parent
2c5925d6
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
358 additions
and
306 deletions
+358
-306
scripts/genksyms/lex.lex.c_shipped
scripts/genksyms/lex.lex.c_shipped
+10
-2
scripts/genksyms/parse.tab.c_shipped
scripts/genksyms/parse.tab.c_shipped
+345
-300
scripts/genksyms/parse.tab.h_shipped
scripts/genksyms/parse.tab.h_shipped
+3
-4
No files found.
scripts/genksyms/lex.lex.c_shipped
View file @
0359de7d
...
...
@@ -660,7 +660,7 @@ static int input (void );
/* This used to be an fputs(), but since the string might contain NUL's,
* we now use fwrite().
*/
#define ECHO
do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0
)
#define ECHO
fwrite( yytext, yyleng, 1, yyout
)
#endif
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
...
...
@@ -671,7 +671,7 @@ static int input (void );
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
{ \
int c = '*'; \
unsigned
n; \
int
n; \
for ( n = 0; n < max_size && \
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
buf[n] = (char) c; \
...
...
@@ -1926,6 +1926,7 @@ void yyfree (void * ptr )
cur_node->tag = \
find_symbol(cur_node->string, SYM_ENUM_CONST, 1)?\
SYM_ENUM_CONST : SYM_NORMAL ; \
cur_node->in_source_file = in_source_file; \
} while (0)
#define APP _APP(yytext, yyleng)
...
...
@@ -1975,6 +1976,13 @@ repeat:
cur_filename = memcpy(xmalloc(e-file+1), file, e-file+1);
cur_line = atoi(yytext+2);
if (!source_file) {
source_file = xstrdup(cur_filename);
in_source_file = 1;
} else {
in_source_file = (strcmp(cur_filename, source_file) == 0);
}
goto repeat;
}
...
...
scripts/genksyms/parse.tab.c_shipped
View file @
0359de7d
This diff is collapsed.
Click to expand it.
scripts/genksyms/parse.tab.h_shipped
View file @
0359de7d
/* A Bison parser, made by GNU Bison 2.
4.3
. */
/* A Bison parser, made by GNU Bison 2.
5
. */
/*
Skeleton interface for Bison's
Yacc-like parsers in C
/*
Bison interface for
Yacc-like parsers in C
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
2009, 2010 Free Software Foundation, Inc.
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment