From: Richard Kenner Date: Tue, 17 May 1994 22:56:16 +0000 (-0400) Subject: (__umoddi3): Correct type of variable `w'. X-Git-Tag: misc/cutover-egcs-0~6619 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b89a6f69c346a29ea2a1630881430b8941fd47cd;p=thirdparty%2Fgcc.git (__umoddi3): Correct type of variable `w'. From-SVN: r7324 --- diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 2a67b0fa8aef..ad0dc16fe116 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -707,7 +707,7 @@ UDItype __umoddi3 (u, v) UDItype u, v; { - DItype w; + UDItype w; (void) __udivmoddi4 (u, v, &w);