From: Ben Elliston Date: Sat, 21 Nov 2009 10:24:25 +0000 (+0000) Subject: gengtype-lex.l: Enable noinput flex option. X-Git-Tag: releases/gcc-4.5.0~2229 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e81f2ecf58f3d5d17a0dbf64f608cef15be5b9ca;p=thirdparty%2Fgcc.git gengtype-lex.l: Enable noinput flex option. * gengtype-lex.l: Enable noinput flex option. (YY_NO_INPUT): Remove define. From-SVN: r154406 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index da2c7a66ddf2..fee14941bc88 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-11-21 Ben Elliston + + * gengtype-lex.l: Enable noinput flex option. + (YY_NO_INPUT): Remove define. + 2009-11-21 Alexandre Oliva * tree-ssa.c (find_released_ssa_name): Handle NULL wi. diff --git a/gcc/gengtype-lex.l b/gcc/gengtype-lex.l index da118d02b28f..297ebf857a80 100644 --- a/gcc/gengtype-lex.l +++ b/gcc/gengtype-lex.l @@ -19,6 +19,8 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ +%option noinput + %{ #include "bconfig.h" #include "system.h" @@ -28,7 +30,6 @@ along with GCC; see the file COPYING3. If not see #include "gengtype.h" -#define YY_NO_INPUT #define YY_DECL int yylex (const char **yylval) #define yyterminate() return EOF_TOKEN