From c63043aae739e147ad1da015d48ecceeb8b3fef9 Mon Sep 17 00:00:00 2001 From: Dmitry Gorbachev Date: Wed, 12 Mar 2014 10:56:17 +0000 Subject: [PATCH] Fix compile time warnings about unused variables 'yyinput' and 'input'. PR binutils/16567 * deflex.l: Add noinput and nounput options. --- binutils/ChangeLog | 5 +++++ binutils/deflex.l | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4a87080..21ac1e5 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2014-03-12 Dmitry Gorbachev + + PR binutils/16567 + * deflex.l: Add noinput and nounput options. + 2014-03-12 Alan Modra * Makefile.in: Regenerate. diff --git a/binutils/deflex.l b/binutils/deflex.l index a5e3448..0a9a0d9 100644 --- a/binutils/deflex.l +++ b/binutils/deflex.l @@ -1,3 +1,5 @@ +%option noinput nounput + %{/* deflex.l - Lexer for .def files */ /* Copyright (C) 1995-2014 Free Software Foundation, Inc. @@ -27,8 +29,6 @@ #include "defparse.h" #include "dlltool.h" -#define YY_NO_UNPUT - int linenumber; %} -- 2.7.4