varargs type instead of a zero-argument type.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160112
138bc75d-0d04-0410-961f-
82ee72b054a4
+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
/* 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);