summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-05 16:41:44 +0000
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-05 16:41:44 +0000
commit17f624c6873a5959720c4a6838e0957a0a8e0d44 (patch)
tree42a4e2b5269edea7d2a31419468377ad4f9eae8d /gcc
parentce197d1fddd2380feb2e891eeac583837be210c6 (diff)
downloadgcc-17f624c6873a5959720c4a6838e0957a0a8e0d44.tar.gz
* integrate.c (function_cannot_inline_p): Do not inline
functions with forced labels. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29127 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/integrate.c3
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6954e886c73..a52a7750e84 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+Sun Sep 5 09:31:56 1999 Richard Henderson <rth@cygnus.com>
+ Bernd Schmidt <bernds@cygnus.co.uk>
+
+ * integrate.c (function_cannot_inline_p): Do not inline
+ functions with forced labels.
+
Sun Sep 5 00:35:17 1999 Richard Henderson <rth@cygnus.com>
Bernd Schmidt <bernds@cygnus.co.uk>
Mark Mitchell <mark@codesourcery.com>
diff --git a/gcc/integrate.c b/gcc/integrate.c
index ce7d773912f..0092f8f0022 100644
--- a/gcc/integrate.c
+++ b/gcc/integrate.c
@@ -148,6 +148,9 @@ function_cannot_inline_p (fndecl)
if (current_function_contains_functions)
return N_("function with nested functions cannot be inline");
+ if (forced_labels)
+ return "function with label addresses used in initializers cannot inline";
+
if (current_function_cannot_inline)
return current_function_cannot_inline;