blob: dbabcbe42134fe81edac285edb1030e4368dbda0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- src/sysdep.cc.orig Sat Jan 4 15:21:29 2003
+++ src/sysdep.cc Tue Jun 10 01:23:09 2003
@@ -98,7 +98,11 @@
#ifndef FP_X_DNML
#define FP_X_DNML 0
#endif
+#if defined(__alpha__)
+ fpsetmask (~(FP_X_OFL|FP_X_INV|FP_X_DZ|FP_X_UFL|FP_X_IMP));
+#else
fpsetmask (~(FP_X_OFL|FP_X_INV|FP_X_DZ|FP_X_DNML|FP_X_UFL|FP_X_IMP));
+#endif
#endif
}
#endif
|