diff options
author | peter <peter@FreeBSD.org> | 2003-07-26 02:27:50 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-07-26 02:27:50 +0000 |
commit | 928665675a7c19e3c7ffc2dc83d5b4085866784b (patch) | |
tree | 45edd5e7aa64e01bda2d022933f9d3fac853a80e /sys/conf | |
parent | 7abd31ac6d9d1aa673ef48e09391f3dfd6941e8f (diff) | |
download | FreeBSD-src-928665675a7c19e3c7ffc2dc83d5b4085866784b.zip FreeBSD-src-928665675a7c19e3c7ffc2dc83d5b4085866784b.tar.gz |
Change the inline limit switch to something that exists in gcc-3.2.
Unfortunately, it has different units.
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/kern.pre.mk | 4 | ||||
-rw-r--r-- | sys/conf/kmod.mk | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/conf/kern.pre.mk b/sys/conf/kern.pre.mk index 16a7a5e..3c64b3b0 100644 --- a/sys/conf/kern.pre.mk +++ b/sys/conf/kern.pre.mk @@ -53,8 +53,8 @@ PROF= -pg .endif DEFINED_PROF= ${PROF} #WERROR?= -Werror -INLINE_LIMIT?= 2500 -CFLAGS+= --param max-inline-insns-single=${INLINE_LIMIT} +INLINE_LIMIT?= 15000 +CFLAGS+= -finline-limit=${INLINE_LIMIT} # Put configuration-specific C flags last (except for ${PROF}) so that they diff --git a/sys/conf/kmod.mk b/sys/conf/kmod.mk index 15b2e98..0a7aeaf 100644 --- a/sys/conf/kmod.mk +++ b/sys/conf/kmod.mk @@ -99,8 +99,8 @@ CFLAGS+= -I${DESTDIR}/usr/include CFLAGS+= -I@/../include -I${DESTDIR}/usr/include .endif # @ -INLINE_LIMIT?= 2500 -CFLAGS+= --param max-inline-insns-single=${INLINE_LIMIT} +INLINE_LIMIT?= 15000 +CFLAGS+= -finline-limit=${INLINE_LIMIT} # Disallow common variables, and if we end up with commons from # somewhere unexpected, allocate storage for them in the module itself. |