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/lto | |
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/lto')
-rw-r--r-- | gcc/lto/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/lto/lto-lang.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index 124b0e75697..1921eaf8b77 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,3 +1,7 @@ +2011-03-25 Jeff Law <law@redhat.com> + + * lto/lto-lang.c (def_fn_type): Add missing va_end. + 2011-03-21 Kai Tietz <ktietz@redhat.com> PR target/12171 diff --git a/gcc/lto/lto-lang.c b/gcc/lto/lto-lang.c index aa928b6df62..3c804f55669 100644 --- a/gcc/lto/lto-lang.c +++ b/gcc/lto/lto-lang.c @@ -471,6 +471,7 @@ def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...) egress: builtin_types[def] = t; + va_end (list); } /* Used to help initialize the builtin-types.def table. When a type of |