svn commit: r205002 - head/lib/libc/sparc64/fpu

Marius Strobl marius at FreeBSD.org
Thu Mar 11 07:46:17 UTC 2010


Author: marius
Date: Thu Mar 11 07:46:17 2010
New Revision: 205002
URL: http://svn.freebsd.org/changeset/base/205002

Log:
  Fix a typo in r204974 so that FTYPE_LNG matches the initialisers of
  the opmask array.
  
  Pointed out by:	Peter Jeremy

Modified:
  head/lib/libc/sparc64/fpu/fpu_emu.h

Modified: head/lib/libc/sparc64/fpu/fpu_emu.h
==============================================================================
--- head/lib/libc/sparc64/fpu/fpu_emu.h	Thu Mar 11 07:39:36 2010	(r205001)
+++ head/lib/libc/sparc64/fpu/fpu_emu.h	Thu Mar 11 07:46:17 2010	(r205002)
@@ -140,7 +140,7 @@ struct fpn {
 #define	FTYPE_SNG	INSFP_s
 #define	FTYPE_DBL	INSFP_d
 #define	FTYPE_EXT	INSFP_q
-#define	FTYPE_LNG	5
+#define	FTYPE_LNG	4
 
 /*
  * Emulator state.


More information about the svn-src-head mailing list