Commit 883298a5 by Mark Mitchell Committed by Mark Mitchell

decl.c (init_decl_processing): #if 0 last patch.

	* decl.c (init_decl_processing): #if 0 last patch.
	(finish_function): Likewise.

From-SVN: r30797
parent 7b0c7e62
1999-12-06 Mark Mitchell <mark@codesourcery.com>
* decl.c (init_decl_processing): #if 0 last patch.
(finish_function): Likewise.
1999-12-05 Mark Mitchell <mark@codesourcery.com> 1999-12-05 Mark Mitchell <mark@codesourcery.com>
* decl.c (init_decl_processing): Set flag_inline_trees if * decl.c (init_decl_processing): Set flag_inline_trees if
......
...@@ -5973,8 +5973,10 @@ init_decl_processing () ...@@ -5973,8 +5973,10 @@ init_decl_processing ()
flag_strict_prototype = pedantic; flag_strict_prototype = pedantic;
if (! flag_permissive && ! pedantic) if (! flag_permissive && ! pedantic)
flag_pedantic_errors = 1; flag_pedantic_errors = 1;
#if 0
if (!flag_no_inline) if (!flag_no_inline)
flag_inline_trees = 1; flag_inline_trees = 1;
#endif
strict_prototypes_lang_c = flag_strict_prototype; strict_prototypes_lang_c = flag_strict_prototype;
...@@ -13667,6 +13669,7 @@ finish_function (lineno, flags) ...@@ -13667,6 +13669,7 @@ finish_function (lineno, flags)
if (!expanding_p && !processing_template_decl) if (!expanding_p && !processing_template_decl)
save_function_data (fndecl); save_function_data (fndecl);
#if 0
/* If this function calls `setjmp' it cannot be inlined. When /* If this function calls `setjmp' it cannot be inlined. When
`longjmp' is called it is not guaranteed to restore the value of `longjmp' is called it is not guaranteed to restore the value of
local variables that have been modified since the call to local variables that have been modified since the call to
...@@ -13678,6 +13681,7 @@ finish_function (lineno, flags) ...@@ -13678,6 +13681,7 @@ finish_function (lineno, flags)
function.) */ function.) */
if (!expanding_p && !processing_template_decl && calls_setjmp_p (fndecl)) if (!expanding_p && !processing_template_decl && calls_setjmp_p (fndecl))
DECL_UNINLINABLE (fndecl) = 1; DECL_UNINLINABLE (fndecl) = 1;
#endif
if (expand_p) if (expand_p)
{ {
......
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