aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplex.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2001-08-07 20:37:26 +0000
committerNeil Booth <neil@gcc.gnu.org>2001-08-07 20:37:26 +0000
commit7364fdd8e0b52133f3cd8e49d72f465ae6128118 (patch)
tree92814bff08429f0e6508827020d533983932b668 /gcc/cpplex.c
parent570a98eb7c116ea107e1c2167da244782cc4b988 (diff)
downloadgcc-7364fdd8e0b52133f3cd8e49d72f465ae6128118.zip
gcc-7364fdd8e0b52133f3cd8e49d72f465ae6128118.tar.gz
gcc-7364fdd8e0b52133f3cd8e49d72f465ae6128118.tar.bz2
cppinit.c (cpp_finish): Pop the final buffer without comment.
* cppinit.c (cpp_finish): Pop the final buffer without comment. * cpplex.c (_cpp_lex_token): Don't pop the final buffer; and take care to avoid multiple no-newline at EOF warnings in that case. From-SVN: r44701
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r--gcc/cpplex.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/gcc/cpplex.c b/gcc/cpplex.c
index f9c4bb9..5e0aa5a 100644
--- a/gcc/cpplex.c
+++ b/gcc/cpplex.c
@@ -897,21 +897,26 @@ _cpp_lex_token (pfile, result)
pfile->line--;
else if (! pfile->state.parsing_args)
{
- unsigned char ret = pfile->buffer->return_at_eof;
-
/* Non-empty files should end in a newline. Don't warn for
command line and _Pragma buffers. */
if (pfile->lexer_pos.col != 0)
{
- /* Account for the missing \n. */
+ /* Account for the missing \n, prevent multiple warnings. */
pfile->line++;
+ pfile->lexer_pos.col = 0;
if (!buffer->from_stage3)
cpp_pedwarn (pfile, "no newline at end of file");
}
- _cpp_pop_buffer (pfile);
- if (pfile->buffer && !ret)
- goto next_token;
+ /* Don't pop the last file. */
+ if (buffer->prev)
+ {
+ unsigned char stop = buffer->return_at_eof;
+
+ _cpp_pop_buffer (pfile);
+ if (!stop)
+ goto next_token;
+ }
}
result->type = CPP_EOF;
return;