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