From: Kresten Krab Thorup Date: Fri, 19 Aug 1994 15:36:22 +0000 (+0000) Subject: (build_selector_translation_table): Reset current_function_decl after hack_function_p... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4d4d7c0e7f1aff2c10d735ff809e2ea9744f171d;p=gcc.git (build_selector_translation_table): Reset current_function_decl after hack_function_prototype build it. (build_selector_translation_table): Reset current_function_decl after hack_function_prototype build it. (build_module_descriptor): Return constructor name from functions decl_rtl. From-SVN: r7944 --- diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index f4ed5fdf2c7..b62ac123e92 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -1569,10 +1569,11 @@ build_module_descriptor () TREE_PUBLIC (current_function_decl) = 1; + function_decl = current_function_decl; finish_function (0); /* Return the name of the constructor function. */ - return IDENTIFIER_POINTER (init_function_name); + return XSTR (XEXP (DECL_RTL (function_decl), 0), 0); } } @@ -1787,6 +1788,7 @@ build_selector_translation_table () initlist = build_constructor (TREE_TYPE (UOBJC_SELECTOR_TABLE_decl), nreverse (initlist)); finish_decl (UOBJC_SELECTOR_TABLE_decl, initlist, NULLT); + current_function_decl = NULLT; } }