diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 2003-03-08 09:53:41 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2003-03-08 09:53:41 +0000 |
commit | 4f6494155438c174383328692c802e2998336879 (patch) | |
tree | c476e2f01366588cd13f45d8e7c0c8b7e3078a30 /gcc | |
parent | 72b8d451f1b0c3bef4b3afc688ada5d5175d97d0 (diff) | |
download | gcc-4f6494155438c174383328692c802e2998336879.zip gcc-4f6494155438c174383328692c802e2998336879.tar.gz gcc-4f6494155438c174383328692c802e2998336879.tar.bz2 |
Initialize args
From-SVN: r63981
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/init.c b/gcc/cp/init.c index 2e4ecc2..e7cba7a 100644 --- a/gcc/cp/init.c +++ b/gcc/cp/init.c @@ -2175,7 +2175,7 @@ build_new_1 (exp) /* True if the function we are calling is a placement allocation function. */ bool placement_allocation_fn_p; - tree args; + tree args = NULL_TREE; placement = TREE_OPERAND (exp, 0); type = TREE_OPERAND (exp, 1); |