From: hubicka Date: Fri, 21 Nov 2003 11:36:58 +0000 (+0000) Subject: * parser.c (cp_parser_postfix_expression): Initialize 's' to X-Git-Tag: upstream/4.9.2~75189 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=10de2a540ceeac1516f1447a40badfe55373563b;p=platform%2Fupstream%2Flinaro-gcc.git * parser.c (cp_parser_postfix_expression): Initialize 's' to NULL_TREE. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73802 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index dafb7d4..598a1aa 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -3709,7 +3709,7 @@ cp_parser_postfix_expression (cp_parser *parser, bool address_p) /* Otherwise, try the pseudo-destructor-name production. */ else { - tree s; + tree s = NULL_TREE; tree type; /* Parse the pseudo-destructor-name. */