From: Nick Clifton Date: Tue, 15 Feb 2005 14:36:19 +0000 (+0000) Subject: (YY_NO_UNPUT): Define so that the yy_unput function is not declared. It is not X-Git-Tag: binutils-2_16-branchpoint~270 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=297ba36772d48bb4ced2b9d4852388378d2568e7;p=external%2Fbinutils.git (YY_NO_UNPUT): Define so that the yy_unput function is not declared. It is not used and its presence causes a compile time warning. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index d00724f..e84e3d5 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2005-02-15 Nick Clifton + + * ldlex.l (YY_NO_UNPUT): Define so that the yy_unput function is + not declared. It is not used and its presence causes a compile + time warning. + 2005-02-11 Zack Weinberg * emultempl/elf32.em (gld${EMULATION_NAME}_stat_needed): diff --git a/ld/ldlex.l b/ld/ldlex.l index 70059e1..ea6fa99 100644 --- a/ld/ldlex.l +++ b/ld/ldlex.l @@ -65,6 +65,8 @@ const char *lex_string = NULL; #undef YY_INPUT #define YY_INPUT(buf,result,max_size) yy_input (buf, &result, max_size) +#define YY_NO_UNPUT + #define MAX_INCLUDE_DEPTH 10 static YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH]; static const char *file_name_stack[MAX_INCLUDE_DEPTH];