aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2009-05-27 12:40:09 +0000
committerHans-Peter Nilsson <hp@gcc.gnu.org>2009-05-27 12:40:09 +0000
commit5e370570a5cbdb9cb615e8167ae3dee3612bae8a (patch)
tree805e7f81da5c32cabeb49a3a0bb2896e7266c745
parenta1fc946a9faaf54fb1a7cbacde595af38687c016 (diff)
downloadgcc-5e370570a5cbdb9cb615e8167ae3dee3612bae8a.zip
gcc-5e370570a5cbdb9cb615e8167ae3dee3612bae8a.tar.gz
gcc-5e370570a5cbdb9cb615e8167ae3dee3612bae8a.tar.bz2
re PR middle-end/40249 (build breakage with inline heuristics change)
PR middle-end/40249 * Makefile.in (CRTSTUFF_CFLAGS): Replace -fno-inline-functions with -fno-inline. From-SVN: r147907
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/Makefile.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index dc0cd37..28cbc28 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2009-05-27 Hans-Peter Nilsson <hp@axis.com>
+
+ PR middle-end/40249
+ * Makefile.in (CRTSTUFF_CFLAGS): Replace -fno-inline-functions
+ with -fno-inline.
+
2009-05-27 Shujing Zhao <pearly.zhao@oracle.com>
* config/m32r/m32r.c: Use REG_P, MEM_P and CONST_INT_P where
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 33b0203..b140688 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -604,7 +604,7 @@ TARGET_LIBGCC2_CFLAGS =
# Options to use when compiling crtbegin/end.
CRTSTUFF_CFLAGS = -O2 $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
- -finhibit-size-directive -fno-inline-functions -fno-exceptions \
+ -finhibit-size-directive -fno-inline -fno-exceptions \
-fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize \
$(INHIBIT_LIBC_CFLAGS)