From d6301dcdbb681f280407842ecfca02a6897a6dc1 Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Fri, 14 May 2004 13:35:46 +0000 Subject: [PATCH] Define INLINE_LIMIT for arm. --- sys/conf/kern.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/conf/kern.mk b/sys/conf/kern.mk index 133f1cf4a66c..4f773ab22f88 100644 --- a/sys/conf/kern.mk +++ b/sys/conf/kern.mk @@ -42,6 +42,9 @@ CFLAGS+= -mno-fp-regs -ffixed-8 -Wa,-mev6 INLINE_LIMIT?= 15000 .endif +.if ${MACHINE_ARCH} == "arm" +INLINE_LIMIT?= 8000 +.endif # # For IA-64, we use r13 for the kernel globals pointer and we only use # a very small subset of float registers for integer divides.