]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(__moddi3): Fix pasto.
authorUlrich Drepper <drepper@redhat.com>
Thu, 30 May 2002 23:59:11 +0000 (23:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 30 May 2002 23:59:11 +0000 (23:59 +0000)
sysdeps/wordsize-32/divdi3.c

index 7929e3019ce92fd59f01d1c4f914e8e6b456758c..a3ec7abd49e7e435458401ad484ab72ed966f3b1 100644 (file)
@@ -301,10 +301,7 @@ __moddi3 (DWtype u, DWtype v)
       u = -u;
     }
   if (v < 0)
-    {
-      c = ~c;
-      v = -v;
-    }
+    v = -v;
   __udivmoddi4 (u, v, &w);
   if (c)
     w = -w;