From 10de2a540ceeac1516f1447a40badfe55373563b Mon Sep 17 00:00:00 2001 From: hubicka Date: Fri, 21 Nov 2003 11:36:58 +0000 Subject: [PATCH] * 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 --- 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 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. */ -- 2.7.4