parser.c (cp_parser_postfix_expression): Initialize 's' to NULL_TREE.
authorJan Hubicka <hubicka@gcc.gnu.org>
Fri, 21 Nov 2003 11:36:58 +0000 (11:36 +0000)
committerJan Hubicka <hubicka@gcc.gnu.org>
Fri, 21 Nov 2003 11:36:58 +0000 (11:36 +0000)
* parser.c (cp_parser_postfix_expression): Initialize 's' to
NULL_TREE.

From-SVN: r73802

gcc/cp/parser.c

index dafb7d42160ab29d94517be566d608b7f4edc506..598a1aa2a7223de86ed7cbdbcc6424f706a7c1ae 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.  */