diff options
author | Richard Henderson <rth@redhat.com> | 2002-03-28 10:51:49 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-03-28 10:51:49 -0800 |
commit | 619708cce29db738d1926514d92c07b24f689b22 (patch) | |
tree | c3f3d3f6bcb25054ebc7c74e7f3117eb734219a8 /gcc/objc | |
parent | b1d874d7b19e09b07657ace24315e9ee279a9ae9 (diff) | |
download | gcc-619708cce29db738d1926514d92c07b24f689b22.zip gcc-619708cce29db738d1926514d92c07b24f689b22.tar.gz gcc-619708cce29db738d1926514d92c07b24f689b22.tar.bz2 |
c-decl.c (finish_function): New arg can_defer_p.
* c-decl.c (finish_function): New arg can_defer_p. Pass it
on to c_expand_body.
* c-tree.h (finish_function): Update decl.
* c-objc-common.c, c-parse.in, objc/objc-act.c: Update calls.
From-SVN: r51518
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/objc-act.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 2d689a2..cfc4702 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -1731,7 +1731,7 @@ build_module_descriptor () c_expand_expr_stmt (decelerator); - finish_function (0); + finish_function (0, 0); return XEXP (DECL_RTL (init_function_decl), 0); } @@ -7265,7 +7265,7 @@ void finish_method_def () { lang_expand_function_end = objc_expand_function_end; - finish_function (0); + finish_function (0, 1); lang_expand_function_end = NULL; /* Required to implement _msgSuper. This must be done AFTER finish_function, |