From 22119a940a793680b02d51d89e8e42532f6b8086 Mon Sep 17 00:00:00 2001 From: neroden Date: Sun, 28 Nov 2004 23:29:41 +0000 Subject: 2004-11-28 Nathanael Nerode PR preprocessor/17651 * c-opts.c (sanitize_cpp_opts): Make flag_no_output imply flag_no_line_commands. * c-ppoutput.c (pp_file_change): Remove now-redundant check of flag_no_output. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91436 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/c-ppoutput.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/c-ppoutput.c') diff --git a/gcc/c-ppoutput.c b/gcc/c-ppoutput.c index 64b27a75f62..996c5f02534 100644 --- a/gcc/c-ppoutput.c +++ b/gcc/c-ppoutput.c @@ -370,7 +370,7 @@ pp_file_change (const struct line_map *map) { const char *flags = ""; - if (flag_no_line_commands || flag_no_output) + if (flag_no_line_commands) return; if (map != NULL) -- cgit v1.2.1