diff options
author | peter <peter@FreeBSD.org> | 2003-11-04 23:29:17 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-11-04 23:29:17 +0000 |
commit | 3932235fbcd382cc065b62e575e1e488565a8c19 (patch) | |
tree | e2412dfc0848c017f812371e17e04c2c3c4e8810 /sys/conf/kern.pre.mk | |
parent | 81a5a11af4b3b415bc48af403d2bf94e75241a76 (diff) | |
download | FreeBSD-src-3932235fbcd382cc065b62e575e1e488565a8c19.zip FreeBSD-src-3932235fbcd382cc065b62e575e1e488565a8c19.tar.gz |
Move the inline limit default variable to a per-arch place. For example,
the amd64 implementation of the pcpu macros is even more verbose than on
i386 and that causes gcc to way overestimate the complexity of this
2-instruction macro. The other platforms can probably lower their
default values.
Diffstat (limited to 'sys/conf/kern.pre.mk')
-rw-r--r-- | sys/conf/kern.pre.mk | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/conf/kern.pre.mk b/sys/conf/kern.pre.mk index bb8210c..a0e34bc 100644 --- a/sys/conf/kern.pre.mk +++ b/sys/conf/kern.pre.mk @@ -56,7 +56,6 @@ PROF= -pg .endif DEFINED_PROF= ${PROF} WERROR?= -Werror -INLINE_LIMIT?= 15000 CFLAGS+= -finline-limit=${INLINE_LIMIT} -fno-strict-aliasing |