c-objc-common.c (c_tree_printer): Pre-intialize t by NULL_TREE.

2010-06-09  Kai Tietz  <kai.tietz@onevision.com>

        * c-objc-common.c (c_tree_printer): Pre-intialize t by NULL_TREE.

From-SVN: r160463
This commit is contained in:
Kai Tietz 2010-06-09 11:34:18 +00:00 committed by Kai Tietz
parent 1536b6ab54
commit 5d7eb7e2fb
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-06-09 Kai Tietz <kai.tietz@onevision.com>
* c-objc-common.c (c_tree_printer): Pre-intialize t by NULL_TREE.
2010-06-09 Martin Jambor <mjambor@suse.cz>
PR tree-optimization/44423

View File

@ -89,7 +89,7 @@ static bool
c_tree_printer (pretty_printer *pp, text_info *text, const char *spec,
int precision, bool wide, bool set_locus, bool hash)
{
tree t;
tree t = NULL_TREE;
tree name;
c_pretty_printer *cpp = (c_pretty_printer *) pp;
pp->padding = pp_none;