aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>1999-12-06 10:36:16 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1999-12-06 10:36:16 +0000
commit883298a5e7bc52c45256a3dfe86fda35893dab9a (patch)
tree3205c500e89070367d3b13fede93bb9958e2847d /gcc
parent7b0c7e62d79eb8b91f79699e8d8203c6961ae661 (diff)
downloadgcc-883298a5e7bc52c45256a3dfe86fda35893dab9a.zip
gcc-883298a5e7bc52c45256a3dfe86fda35893dab9a.tar.gz
gcc-883298a5e7bc52c45256a3dfe86fda35893dab9a.tar.bz2
decl.c (init_decl_processing): #if 0 last patch.
* decl.c (init_decl_processing): #if 0 last patch. (finish_function): Likewise. From-SVN: r30797
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cp/ChangeLog5
-rw-r--r--gcc/cp/decl.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 2a007f8..812b966 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+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>
* decl.c (init_decl_processing): Set flag_inline_trees if
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c
index b6a62ea..8e233f6 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)
{