diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-06 05:04:32 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-06 05:04:32 +0000 |
commit | 8f8b0e45b33a35870b4f308b69bf0ddeb212e4d7 (patch) | |
tree | 62838ff33a249f3ac3ae22d9ad1118b5d78ad52d /gcc/cp/pt.c | |
parent | 8a589862bac95ffd5bde2434249122434cc22449 (diff) | |
download | gcc-8f8b0e45b33a35870b4f308b69bf0ddeb212e4d7.tar.gz |
Warning fixes:
* Makefile.in (spew.o): Depend on toplev.h.
* call.c (compare_ics): Initialize variables `deref_from_type2',
`deref_to_type1' and `deref_to_type2'.
* except.c (get_eh_type): Hide prototype and definition.
(process_start_catch_block_old): Remove unused static prototype.
* pt.c (tsubst_decl): Initialize variable `argvec'.
* spew.c: Include toplev.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22864 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/pt.c')
-rw-r--r-- | gcc/cp/pt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 83dfde549b8..10161f822ab 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -5027,7 +5027,7 @@ tsubst_decl (t, args, type, in_decl) case FUNCTION_DECL: { tree ctx; - tree argvec; + tree argvec = NULL_TREE; tree gen_tmpl; int member; int args_depth; |