summaryrefslogtreecommitdiffstats
path: root/sys/conf/kmod.mk
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2003-07-26 02:27:50 +0000
committerpeter <peter@FreeBSD.org>2003-07-26 02:27:50 +0000
commit928665675a7c19e3c7ffc2dc83d5b4085866784b (patch)
tree45edd5e7aa64e01bda2d022933f9d3fac853a80e /sys/conf/kmod.mk
parent7abd31ac6d9d1aa673ef48e09391f3dfd6941e8f (diff)
downloadFreeBSD-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/kmod.mk')
-rw-r--r--sys/conf/kmod.mk4
1 files changed, 2 insertions, 2 deletions
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.
OpenPOWER on IntegriCloud