diff options
Diffstat (limited to 'gcc/cppmacro.c')
-rw-r--r-- | gcc/cppmacro.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/cppmacro.c b/gcc/cppmacro.c index 5e094c2..9390cbc 100644 --- a/gcc/cppmacro.c +++ b/gcc/cppmacro.c @@ -392,8 +392,7 @@ paste_tokens (pfile, plhs, rhs) /* Set pfile->cur_token as required by _cpp_lex_direct. */ pfile->cur_token = _cpp_temp_token (pfile); *plhs = _cpp_lex_direct (pfile); - valid = (pfile->buffer->cur == pfile->buffer->rlimit - && pfile->buffer->read_ahead == EOF); + valid = pfile->buffer->cur == pfile->buffer->rlimit; _cpp_pop_buffer (pfile); return valid; |