1 Upstream-Status: Inappropriate [Backport]
2 From dd8cc468e2787972742061b1547dbab48729ccf8 Mon Sep 17 00:00:00 2001
3 From: rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
4 Date: Tue, 19 Apr 2011 09:14:05 +0000
5 Subject: [PATCH 147/200] 2011-04-18 Richard Guenther <rguenther@suse.de>
8 * c-ppoutput.c (maybe_print_line): Avoid changing -P behavior.
11 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_6-branch@172701 138bc75d-0d04-0410-961f-82ee72b054a4
13 index 9ebac42..5eca03f 100644
14 --- a/gcc/c-family/c-ppoutput.c
15 +++ b/gcc/c-family/c-ppoutput.c
16 @@ -316,7 +316,7 @@ maybe_print_line (source_location src_loc)
18 if (src_line >= print.src_line
19 && src_line < print.src_line + 8
20 - && strcmp (map->to_file, print.src_file) == 0)
21 + && (flag_no_line_commands || strcmp (map->to_file, print.src_file) == 0))
23 while (src_line > print.src_line)