diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-25 16:39:10 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-03-25 16:39:10 +0000 |
commit | 451c8e2fbeab57b77a5d8b5ee3258a311df54f8d (patch) | |
tree | 1099e95dcdea48c93137f2a174b2b6f9a70c7289 /gcc/c-family/c-common.c | |
parent | f82efd77cef80a0ebd1b6e4b26e10eb4bccfc36f (diff) | |
download | gcc-451c8e2fbeab57b77a5d8b5ee3258a311df54f8d.tar.gz |
* dwarf2asm.c (dw2_asm_output_encoded_addr_rtx): Add missing
va_end.
* c-family/c-common.c (def_fn_type): Likewise.
* ada/gcc-interface/utils.c (def_fn_type): Likewise.
* emit-rtl.c (gen_rtvec): Likewise.
* lto/lto-lang.c (def_fn_type): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171466 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-family/c-common.c')
-rw-r--r-- | gcc/c-family/c-common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c-common.c index 33af3d82eae..cab9e7efa57 100644 --- a/gcc/c-family/c-common.c +++ b/gcc/c-family/c-common.c @@ -4428,6 +4428,7 @@ def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...) egress: builtin_types[def] = t; + va_end (list); } /* Build builtin functions common to both C and C++ language |