mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-02 19:46:09 +08:00
Fix compile time warnings about unused variables 'yyinput' and 'input'.
PR binutils/16567 * deflex.l: Add noinput and nounput options.
This commit is contained in:

committed by
Nick Clifton

parent
fa47fa9246
commit
c63043aae7
@ -1,3 +1,8 @@
|
||||
2014-03-12 Dmitry Gorbachev <d.g.gorbachev@gmail.com>
|
||||
|
||||
PR binutils/16567
|
||||
* deflex.l: Add noinput and nounput options.
|
||||
|
||||
2014-03-12 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* Makefile.in: Regenerate.
|
||||
|
@ -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;
|
||||
|
||||
%}
|
||||
|
Reference in New Issue
Block a user