aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-objc-common.c
diff options
context:
space:
mode:
authorKai Tietz <kai.tietz@onevision.com>2010-06-09 11:34:18 +0000
committerKai Tietz <ktietz@gcc.gnu.org>2010-06-09 13:34:18 +0200
commit5d7eb7e2fba8d94ed00204558f16f1a4465f6bd0 (patch)
treeb232f904c14716181c9a0468e6df3563c2daa184 /gcc/c-objc-common.c
parent1536b6ab5405e87b082c305321f382345d20f604 (diff)
downloadgcc-5d7eb7e2fba8d94ed00204558f16f1a4465f6bd0.zip
gcc-5d7eb7e2fba8d94ed00204558f16f1a4465f6bd0.tar.gz
gcc-5d7eb7e2fba8d94ed00204558f16f1a4465f6bd0.tar.bz2
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
Diffstat (limited to 'gcc/c-objc-common.c')
-rw-r--r--gcc/c-objc-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-objc-common.c b/gcc/c-objc-common.c
index 0bb252f..d1cac99 100644
--- a/gcc/c-objc-common.c
+++ b/gcc/c-objc-common.c
@@ -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;