diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-08 09:53:41 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-08 09:53:41 +0000 |
commit | a08f55e8d8932d37f6a4cd6a26f0afcbb2e6ab39 (patch) | |
tree | c476e2f01366588cd13f45d8e7c0c8b7e3078a30 /gcc/cp | |
parent | a964683a51fa8f998342ebc0f96b6e9f06416c9d (diff) | |
download | gcc-a08f55e8d8932d37f6a4cd6a26f0afcbb2e6ab39.tar.gz |
Initialize args
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63981 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp')
-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 2e4ecc228cc..e7cba7adcf6 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); |