aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@gcc.gnu.org>2003-11-21 11:36:58 +0000
committerJan Hubicka <hubicka@gcc.gnu.org>2003-11-21 11:36:58 +0000
commit9080889499313f99a368f494953b62768d96e250 (patch)
tree24accb79a9875110b4ee22276ffb89e3fffa000e
parent6f39ead47e364934bacf200b8bf25db6b776133e (diff)
downloadgcc-9080889499313f99a368f494953b62768d96e250.zip
gcc-9080889499313f99a368f494953b62768d96e250.tar.gz
gcc-9080889499313f99a368f494953b62768d96e250.tar.bz2
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
-rw-r--r--gcc/cp/parser.c2
1 files changed, 1 insertions, 1 deletions
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. */