* parser.c (cp_parser_postfix_expression): Initialize 's' to
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 21 Nov 2003 11:36:58 +0000 (11:36 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 21 Nov 2003 11:36:58 +0000 (11:36 +0000)
NULL_TREE.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73802 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/parser.c

index dafb7d4..598a1aa 100644 (file)
@@ -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.  */