Commit 0957c029 by Jakub Jelinek Committed by Jakub Jelinek

c-common.c (def_fn_type): Remove extra va_end.

	* c-common.c (def_fn_type): Remove extra va_end.

	* gcc-interface/utils.c (def_fn_type): Remove extra va_end.

From-SVN: r174218
parent 6c81b2bc
2011-05-25 Jakub Jelinek <jakub@redhat.com>
* gcc-interface/utils.c (def_fn_type): Remove extra va_end.
2011-05-25 Kai Tietz <ktietz@redhat.com> 2011-05-25 Kai Tietz <ktietz@redhat.com>
* adaint.c (__gnat_to_canonical_file_list_next): Use array * adaint.c (__gnat_to_canonical_file_list_next): Use array
......
...@@ -4965,7 +4965,6 @@ def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...) ...@@ -4965,7 +4965,6 @@ def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
goto egress; goto egress;
args[i] = t; args[i] = t;
} }
va_end (list);
t = builtin_types[ret]; t = builtin_types[ret];
if (t == error_mark_node) if (t == error_mark_node)
......
2011-05-25 Jakub Jelinek <jakub@redhat.com>
* c-common.c (def_fn_type): Remove extra va_end.
2011-05-23 Jason Merrill <jason@redhat.com> 2011-05-23 Jason Merrill <jason@redhat.com>
PR c++/48106 PR c++/48106
......
...@@ -4451,7 +4451,6 @@ def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...) ...@@ -4451,7 +4451,6 @@ def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
goto egress; goto egress;
args[i] = t; args[i] = t;
} }
va_end (list);
t = builtin_types[ret]; t = builtin_types[ret];
if (t == error_mark_node) if (t == error_mark_node)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment