mirror of git://gcc.gnu.org/git/gcc.git
re PR preprocessor/14331 (please add option to suppress warning message "no newline at end of file")
2007-05-31 Dave Korn <dave.korn@artimi.com> PR preprocessor/14331 * lex.c (_cpp_get_fresh_line): Don't warn if no newline at EOF. From-SVN: r125212
This commit is contained in:
parent
8af2fec40b
commit
ed0e74e0a6
|
@ -1,3 +1,8 @@
|
||||||
|
2007-05-31 Dave Korn <dave.korn@artimi.com>
|
||||||
|
|
||||||
|
PR preprocessor/14331
|
||||||
|
* lex.c (_cpp_get_fresh_line): Don't warn if no newline at EOF.
|
||||||
|
|
||||||
2007-05-24 Ollie Wild <aaw@google.com>
|
2007-05-24 Ollie Wild <aaw@google.com>
|
||||||
|
|
||||||
* macro.c (_cpp_builtin_macro_text): Handle BT_COUNTER.
|
* macro.c (_cpp_builtin_macro_text): Handle BT_COUNTER.
|
||||||
|
|
|
@ -852,11 +852,8 @@ _cpp_get_fresh_line (cpp_reader *pfile)
|
||||||
&& buffer->next_line > buffer->rlimit
|
&& buffer->next_line > buffer->rlimit
|
||||||
&& !buffer->from_stage3)
|
&& !buffer->from_stage3)
|
||||||
{
|
{
|
||||||
/* Only warn once. */
|
/* Clip to buffer size. */
|
||||||
buffer->next_line = buffer->rlimit;
|
buffer->next_line = buffer->rlimit;
|
||||||
cpp_error_with_line (pfile, CPP_DL_PEDWARN, pfile->line_table->highest_line,
|
|
||||||
CPP_BUF_COLUMN (buffer, buffer->cur),
|
|
||||||
"no newline at end of file");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return_at_eof = buffer->return_at_eof;
|
return_at_eof = buffer->return_at_eof;
|
||||||
|
|
Loading…
Reference in New Issue