From: Jan Hubicka Date: Fri, 21 Nov 2003 11:36:58 +0000 (+0000) Subject: parser.c (cp_parser_postfix_expression): Initialize 's' to NULL_TREE. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9080889499313f99a368f494953b62768d96e250;p=gcc.git parser.c (cp_parser_postfix_expression): Initialize 's' to NULL_TREE. * parser.c (cp_parser_postfix_expression): Initialize 's' to NULL_TREE. From-SVN: r73802 --- diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index dafb7d42160..598a1aa2a72 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. */