patch-2.4.20 linux-2.4.20/arch/mips/math-emu/ieee754int.h
Next file: linux-2.4.20/arch/mips/math-emu/ieee754sp.c
Previous file: linux-2.4.20/arch/mips/math-emu/ieee754dp.h
Back to the patch index
Back to the overall index
- Lines: 33
- Date:
Thu Nov 28 15:53:10 2002
- Orig file:
linux-2.4.19/arch/mips/math-emu/ieee754int.h
- Orig date:
Fri Aug 2 17:39:43 2002
diff -urN linux-2.4.19/arch/mips/math-emu/ieee754int.h linux-2.4.20/arch/mips/math-emu/ieee754int.h
@@ -1,4 +1,4 @@
-/*
+/*
* IEEE754 floating point
* common internal header file
*/
@@ -38,11 +38,11 @@
#define SP_EMAX 127
#define SP_MBITS 23
-#define DP_MBIT(x) ((unsigned long long)1 << (x))
+#define DP_MBIT(x) ((u64)1 << (x))
#define DP_HIDDEN_BIT DP_MBIT(DP_MBITS)
#define DP_SIGN_BIT DP_MBIT(63)
-#define SP_MBIT(x) ((unsigned long)1 << (x))
+#define SP_MBIT(x) ((u32)1 << (x))
#define SP_HIDDEN_BIT SP_MBIT(SP_MBITS)
#define SP_SIGN_BIT SP_MBIT(31)
@@ -102,10 +102,10 @@
#define COMPXDP \
-unsigned long long xm; int xe; int xs; int xc
+u64 xm; int xe; int xs; int xc
#define COMPYDP \
-unsigned long long ym; int ye; int ys; int yc
+u64 ym; int ye; int ys; int yc
#define EXPLODEDP(v,vc,vs,ve,vm) \
{\
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)