From 9080889499313f99a368f494953b62768d96e250 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Fri, 21 Nov 2003 11:36:58 +0000 Subject: [PATCH] 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 --- gcc/cp/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.30.2