Port-m68k archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: CVS commit: src/sys/arch/mac68k/mac68k



A look at the manual seems to confirm that we just need to swap
the values for FE_DOWNWARD and FE_UPWARD - I'll do a test build and rerun
the regression tests.

Martin
Index: ieeefp.h
===================================================================
RCS file: /cvsroot/src/sys/arch/m68k/include/ieeefp.h,v
retrieving revision 1.6
diff -u -r1.6 ieeefp.h
--- ieeefp.h    5 Aug 2008 16:47:42 -0000       1.6
+++ ieeefp.h    27 Jan 2009 11:06:25 -0000
@@ -26,8 +26,8 @@
 
 #define        FE_TONEAREST    0       /* round to nearest representable 
number */
 #define        FE_TOWARDZERO   1       /* round to zero (truncate) */
-#define        FE_UPWARD       2       /* round toward positive infinity */
-#define        FE_DOWNWARD     3       /* round toward negative infinity */
+#define        FE_DOWNWARD     2       /* round toward negative infinity */
+#define        FE_UPWARD       3       /* round toward positive infinity */
 
 #if !defined(_ISOC99_SOURCE)
 


Home | Main Index | Thread Index | Old Index