]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
(__umoddi3): Correct type of variable `w'.
authorRichard Kenner <kenner@gcc.gnu.org>
Tue, 17 May 1994 22:56:16 +0000 (18:56 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Tue, 17 May 1994 22:56:16 +0000 (18:56 -0400)
From-SVN: r7324

gcc/libgcc2.c

index 2a67b0fa8aefe9e04d281fa698c8e043507bf128..ad0dc16fe1161bcaecca674a91319fd52a58e068 100644 (file)
@@ -707,7 +707,7 @@ UDItype
 __umoddi3 (u, v)
      UDItype u, v;
 {
-  DItype w;
+  UDItype w;
 
   (void) __udivmoddi4 (u, v, &w);