Blame SOURCES/0008-Currently-we-have-DivU64x32-on-ia32-but-it-tries-to-.patch

5c11e1
From d039cd620b8a270d9b231691c9b31d6824f18c08 Mon Sep 17 00:00:00 2001
5c11e1
From: Nigel Croxon <ncroxon@redhat.com>
5c11e1
Date: Wed, 10 Jan 2018 10:28:36 -0500
5c11e1
Subject: [PATCH 08/25] Currently we have DivU64x32 on ia32, but it tries to
5c11e1
 call __umoddi3 and __udivdi3 from libgcc, which we don't have. This fixes it
5c11e1
 to use our implementation in that case.
5c11e1
5c11e1
Signed-off-by: Peter Jones <pjones@redhat.com>
5c11e1
Signed-off-by: Nigel Croxon <ncroxon@redhat.com>
5c11e1
---
5c11e1
 lib/ia32/math.c | 4 ++--
5c11e1
 1 file changed, 2 insertions(+), 2 deletions(-)
5c11e1
5c11e1
diff --git a/lib/ia32/math.c b/lib/ia32/math.c
5c11e1
index 81f51bf45e4..fce7a8d4875 100644
5c11e1
--- a/lib/ia32/math.c
5c11e1
+++ b/lib/ia32/math.c
5c11e1
@@ -140,7 +140,7 @@ DivU64x32 (
5c11e1
 // divide 64bit by 32bit and get a 64bit result
5c11e1
 // N.B. only works for 31bit divisors!!
5c11e1
 {
5c11e1
-#if defined(__GNUC__) && !defined(__MINGW32__)
5c11e1
+#if 0 && defined(__GNUC__) && !defined(__MINGW32__)
5c11e1
     if (Remainder)
5c11e1
         *Remainder = Dividend % Divisor;
5c11e1
     return Dividend / Divisor;
5c11e1
@@ -157,7 +157,7 @@ DivU64x32 (
5c11e1
 
5c11e1
     Rem = 0;
5c11e1
     for (bit=0; bit < 64; bit++) {
5c11e1
-#ifdef __MINGW32__
5c11e1
+#if defined(__GNUC__) || defined(__MINGW32__)
5c11e1
         asm (
5c11e1
             "shll	$1, %0\n\t"
5c11e1
             "rcll	$1, 4%0\n\t"
5c11e1
-- 
5c11e1
2.15.0
5c11e1