mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-30 16:51:41 +00:00
Change the inline limit switch to something that exists in gcc-3.2.
Unfortunately, it has different units.
This commit is contained in:
parent
c8db6734e0
commit
a92a214401
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=118036
@ -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
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user