re PR target/51756 (wrong warning: uninitialized variable put into program memory area)

PR target/51756
	* config/avr/avr.c (avr_encode_section_info): Test for absence of
	DECL_EXTERNAL when checking for initializers of progmem variables.

From-SVN: r183129
This commit is contained in:
Georg-Johann Lay 2012-01-12 16:51:28 +00:00 committed by Georg-Johann Lay
parent 82db3d43de
commit ab8c50934b
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2012-01-10 Georg-Johann Lay <avr@gjlay.de>
PR target/51756
* config/avr/avr.c (avr_encode_section_info): Test for absence of
DECL_EXTERNAL when checking for initializers of progmem variables.
2012-01-12 Ira Rosen <irar@il.ibm.com>
PR tree-optimization/51799

View File

@ -7222,6 +7222,7 @@ avr_encode_section_info (tree decl, rtx rtl, int new_decl_p)
if (new_decl_p
&& decl && DECL_P (decl)
&& NULL_TREE == DECL_INITIAL (decl)
&& !DECL_EXTERNAL (decl)
&& avr_progmem_p (decl, DECL_ATTRIBUTES (decl)))
{
warning (OPT_Wuninitialized,