svn commit: r287116 - head/sys/mips/mips

Adrian Chadd adrian at FreeBSD.org
Mon Aug 24 19:09:57 UTC 2015


Author: adrian
Date: Mon Aug 24 19:09:56 2015
New Revision: 287116
URL: https://svnweb.freebsd.org/changeset/base/287116

Log:
  Enable hardfloat for assembly generation.
  
  gcc versions later than 4.2 started erroring out on seeing hardware
  floating point references when soft-float was enabled.
  
  Reviewed by:	imp

Modified:
  head/sys/mips/mips/fp.S

Modified: head/sys/mips/mips/fp.S
==============================================================================
--- head/sys/mips/mips/fp.S	Mon Aug 24 18:57:32 2015	(r287115)
+++ head/sys/mips/mips/fp.S	Mon Aug 24 19:09:56 2015	(r287116)
@@ -76,6 +76,8 @@
 #define	COND_LESS	0x4
 #define	COND_SIGNAL	0x8
 
+.set hardfloat
+
 /*----------------------------------------------------------------------------
  *
  * MipsEmulateFP --


More information about the svn-src-all mailing list