diff options
author | peter <peter@FreeBSD.org> | 2004-02-06 20:40:04 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2004-02-06 20:40:04 +0000 |
commit | c4dddda17287e3aa5b4703131171e6648865971c (patch) | |
tree | 87ea78472e007f0841199c719ca13a9c6cd4791d /sys | |
parent | 2130efebdfb4164961243ea18e55a804a8e39861 (diff) | |
download | FreeBSD-src-c4dddda17287e3aa5b4703131171e6648865971c.zip FreeBSD-src-c4dddda17287e3aa5b4703131171e6648865971c.tar.gz |
Reduce the inline limit from 20000 to 8000 after the previous changes
to simplify the curthread expansion some months ago.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/conf/kern.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/conf/kern.mk b/sys/conf/kern.mk index da83953..74a364c 100644 --- a/sys/conf/kern.mk +++ b/sys/conf/kern.mk @@ -64,7 +64,7 @@ INLINE_LIMIT?= 15000 CFLAGS+= -mcmodel=kernel -mno-red-zone \ -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow \ -msoft-float -fno-asynchronous-unwind-tables -INLINE_LIMIT?= 20000 +INLINE_LIMIT?= 8000 .endif # |