aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/genksyms/lex.lex.c_shipped
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/genksyms/lex.lex.c_shipped')
-rw-r--r--scripts/genksyms/lex.lex.c_shipped8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/genksyms/lex.lex.c_shipped b/scripts/genksyms/lex.lex.c_shipped
index 985c5541aae4..d5a7474b3e57 100644
--- a/scripts/genksyms/lex.lex.c_shipped
+++ b/scripts/genksyms/lex.lex.c_shipped
@@ -1905,7 +1905,7 @@ void yyfree (void * ptr )
1905 1905
1906/* Bring in the keyword recognizer. */ 1906/* Bring in the keyword recognizer. */
1907 1907
1908#include "keywords.hash.c" 1908#include "keywords.c"
1909 1909
1910/* Macros to append to our phrase collection list. */ 1910/* Macros to append to our phrase collection list. */
1911 1911
@@ -1995,10 +1995,10 @@ repeat:
1995 case IDENT: 1995 case IDENT:
1996 APP; 1996 APP;
1997 { 1997 {
1998 const struct resword *r = is_reserved_word(yytext, yyleng); 1998 int r = is_reserved_word(yytext, yyleng);
1999 if (r) 1999 if (r >= 0)
2000 { 2000 {
2001 switch (token = r->token) 2001 switch (token = r)
2002 { 2002 {
2003 case ATTRIBUTE_KEYW: 2003 case ATTRIBUTE_KEYW:
2004 lexstate = ST_ATTRIBUTE; 2004 lexstate = ST_ATTRIBUTE;