objc-act.c (build_next_objc_exception_stuff): Give setjmp a varargs type instead of a zero-argument type.

* objc-act.c (build_next_objc_exception_stuff): Give setjmp a
	varargs type instead of a zero-argument type.

From-SVN: r160112
This commit is contained in:
Nathan Froyd 2010-06-01 15:54:39 +00:00 committed by Nathan Froyd
parent 5936d944f8
commit bb9a7f511a
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-06-01 Nathan Froyd <froydnj@codesourcery.com>
* objc-act.c (build_next_objc_exception_stuff): Give setjmp a
varargs type instead of a zero-argument type.
2010-05-30 Nathan Froyd <froydnj@codesourcery.com>
* objc-act.c (synth_module_prologue): Use build_function_type_list

View File

@ -4092,7 +4092,7 @@ build_next_objc_exception_stuff (void)
/* int _setjmp(...); */
/* If the user includes <setjmp.h>, this shall be superseded by
'int _setjmp(jmp_buf);' */
temp_type = build_function_type_list (integer_type_node, NULL_TREE);
temp_type = build_varargs_function_type_list (integer_type_node, NULL_TREE);
objc_setjmp_decl
= add_builtin_function (TAG_SETJMP, temp_type, 0, NOT_BUILT_IN, NULL, NULL_TREE);