aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/lib/math.c
diff options
context:
space:
mode:
Diffstat (limited to 'extras/mini-os/lib/math.c')
-rw-r--r--extras/mini-os/lib/math.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/extras/mini-os/lib/math.c b/extras/mini-os/lib/math.c
index c8f8d33d31..c941b4c420 100644
--- a/extras/mini-os/lib/math.c
+++ b/extras/mini-os/lib/math.c
@@ -50,10 +50,6 @@
#include <mini-os/lib.h>
#include <mini-os/time.h>
- /* On ia64 these functions lead to crashes. These are replaced by
- * assembler functions. */
-#if !defined(__ia64__)
-
/* XXX RN: Yuck hardcoded endianess :) */
#define _QUAD_HIGHWORD 1
#define _QUAD_LOWWORD 0
@@ -428,7 +424,6 @@ __moddi3(quad_t a, quad_t b)
(void)__qdivrem(ua, ub, &ur);
return (neg ? -ur : ur);
}
-#endif /* !defined(__ia64__) */
#ifndef HAVE_LIBC
/* Should be random enough for our uses */