1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

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)
This commit is contained in:
Warner Losh 2010-01-09 17:21:36 +00:00
parent 989bac19ea
commit 9fc13460f5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201903

View File

@ -86,11 +86,10 @@ INLINE_LIMIT?= 15000
.endif .endif
# #
# For MIPS we also tell gcc to use floating point emulation and # For MIPS we also tell gcc to use floating point emulation
# disable MIPS DSP ASE Instruction set.
# #
.if ${MACHINE_ARCH} == "mips" .if ${MACHINE_ARCH} == "mips"
CFLAGS+= -msoft-float -mno-dsp CFLAGS+= -msoft-float
INLINE_LIMIT?= 8000 INLINE_LIMIT?= 8000
.endif .endif