From 75467084773e45fe4e77efa7606c42627bfcc878 Mon Sep 17 00:00:00 2001 From: mmitchel Date: Mon, 6 Dec 1999 10:36:16 +0000 Subject: [PATCH] * decl.c (init_decl_processing): #if 0 last patch. (finish_function): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30797 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/decl.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 2a007f8677e..812b96654e2 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +1999-12-06 Mark Mitchell + + * decl.c (init_decl_processing): #if 0 last patch. + (finish_function): Likewise. + 1999-12-05 Mark Mitchell * decl.c (init_decl_processing): Set flag_inline_trees if diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index b6a62ea4834..8e233f6a966 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -5973,8 +5973,10 @@ init_decl_processing () flag_strict_prototype = pedantic; if (! flag_permissive && ! pedantic) flag_pedantic_errors = 1; +#if 0 if (!flag_no_inline) flag_inline_trees = 1; +#endif strict_prototypes_lang_c = flag_strict_prototype; @@ -13667,6 +13669,7 @@ finish_function (lineno, flags) if (!expanding_p && !processing_template_decl) save_function_data (fndecl); +#if 0 /* If this function calls `setjmp' it cannot be inlined. When `longjmp' is called it is not guaranteed to restore the value of local variables that have been modified since the call to @@ -13678,6 +13681,7 @@ finish_function (lineno, flags) function.) */ if (!expanding_p && !processing_template_decl && calls_setjmp_p (fndecl)) DECL_UNINLINABLE (fndecl) = 1; +#endif if (expand_p) { -- 2.11.0