diff options
author | imp <imp@FreeBSD.org> | 2010-01-09 17:21:36 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2010-01-09 17:21:36 +0000 |
commit | 3d6ce0693c7a0d23921d8f3a1e72f8b30df583ce (patch) | |
tree | d23ee155bdf1c91eed7f8548604bb1aecbfa2924 /sys | |
parent | 885cb5e79af780f5cc1195901f5dcdd517f4b15c (diff) | |
download | FreeBSD-src-3d6ce0693c7a0d23921d8f3a1e72f8b30df583ce.zip FreeBSD-src-3d6ce0693c7a0d23921d8f3a1e72f8b30df583ce.tar.gz |
Merge r201902 and r195669 from projects/mips into head by hand:
r201902 | imp | 2010-01-09 10:16:19 -0700 (Sat, 09 Jan 2010) | 2 lines
Fix comment, which was missed in an earlier commit...
r195669 | gonzo | 2009-07-13 17:03:44 -0600 (Mon, 13 Jul 2009) | 3 lines
- Remove -mno-dsp from CFLAGS. MIPS DSP ASE is off by default
now (as it should be)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/conf/kern.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/conf/kern.mk b/sys/conf/kern.mk index f9618ef..0013dd2 100644 --- a/sys/conf/kern.mk +++ b/sys/conf/kern.mk @@ -86,11 +86,10 @@ INLINE_LIMIT?= 15000 .endif # -# For MIPS we also tell gcc to use floating point emulation and -# disable MIPS DSP ASE Instruction set. +# For MIPS we also tell gcc to use floating point emulation # .if ${MACHINE_ARCH} == "mips" -CFLAGS+= -msoft-float -mno-dsp +CFLAGS+= -msoft-float INLINE_LIMIT?= 8000 .endif |