From: Philip Herron Date: Sat, 19 Jun 2010 10:42:02 +0000 (+0000) Subject: c-decl.c (c_write_global_declarations): Don't check flag_syntax_only. X-Git-Tag: upstream/12.2.0~92178 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5a2983ce59e3691aaca42d87dca21ca7a38486fc;p=platform%2Fupstream%2Fgcc.git c-decl.c (c_write_global_declarations): Don't check flag_syntax_only. 2010-06-19 Philip Herron * c-decl.c (c_write_global_declarations): Don't check flag_syntax_only. From-SVN: r161024 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 85fec49..d9587a8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-06-19 Philip Herron + + * c-decl.c (c_write_global_declarations): Don't check + flag_syntax_only. + 2010-06-18 H.J. Lu * stor-layout.c (debug_rli): Remove unused local variables. diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 740ca35..2033a3b 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -9658,11 +9658,6 @@ c_write_global_declarations (void) if (pch_file) return; - /* Don't waste time on further processing if -fsyntax-only. - Continue for warning and errors issued during lowering though. */ - if (flag_syntax_only) - return; - /* Close the external scope. */ ext_block = pop_scope (); external_scope = 0;