diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2009-10-14 10:54:27 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2009-10-14 10:54:27 +0000 |
commit | d05c651b27358c7d6d0d59e8b46f8b0c68ae6369 (patch) | |
tree | 3907895cfd97d132b8e5560449b83ab305521542 /ld | |
parent | 7dff20279654e6dd571705f3fc9bad655d1d1dcd (diff) | |
download | gdb-d05c651b27358c7d6d0d59e8b46f8b0c68ae6369.zip gdb-d05c651b27358c7d6d0d59e8b46f8b0c68ae6369.tar.gz gdb-d05c651b27358c7d6d0d59e8b46f8b0c68ae6369.tar.bz2 |
* ldlex.l (yy_input): Remove second argument and return the value
instead.
(YY_INPUT): Adjust.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/ldlex.l | 17 |
2 files changed, 15 insertions, 8 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 2193cb1..89c6052 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2009-10-14 Andreas Schwab <schwab@linux-m68k.org> + + * ldlex.l (yy_input): Remove second argument and return the value + instead. + (YY_INPUT): Adjust. + 2009-10-14 Alan Modra <amodra@bigpond.net.au> * emultempl/netbsd.em (gldnetbsd_before_parse): Typo fix. @@ -57,7 +57,7 @@ const char *lex_string = NULL; Otherwise, stack elements 0 through `include_stack_ptr - 1' are valid. */ #undef YY_INPUT -#define YY_INPUT(buf,result,max_size) yy_input (buf, &result, max_size) +#define YY_INPUT(buf,result,max_size) result = yy_input (buf, max_size) #define YY_NO_UNPUT @@ -68,7 +68,7 @@ static unsigned int lineno_stack[MAX_INCLUDE_DEPTH]; static unsigned int include_stack_ptr = 0; static int vers_node_nesting = 0; -static void yy_input (char *, int *, int); +static int yy_input (char *, int); static void comment (void); static void lex_warn_invalid (char *where, char *what); @@ -608,22 +608,23 @@ ldlex_popstate (void) } -/* Place up to MAX_SIZE characters in BUF and return in *RESULT +/* Place up to MAX_SIZE characters in BUF and return either the number of characters read, or 0 to indicate EOF. */ -static void -yy_input (char *buf, int *result, int max_size) +static int +yy_input (char *buf, int max_size) { - *result = 0; + int result = 0; if (YY_CURRENT_BUFFER->yy_input_file) { if (yyin) { - *result = fread (buf, 1, max_size, yyin); - if (*result < max_size && ferror (yyin)) + result = fread (buf, 1, max_size, yyin); + if (result < max_size && ferror (yyin)) einfo ("%F%P: read in flex scanner failed\n"); } } + return result; } /* Eat the rest of a C-style comment. */ |