diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c-objc-common.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a66edd0..cb5ec8c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 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; |