libgcc2.c (__moddi3): Cast &w to UDWtype*.

2004-10-07  Andrew Pinski  <pinskia@physics.uc.edu>

        * libgcc2.c (__moddi3): Cast &w to UDWtype*.

From-SVN: r88734
This commit is contained in:
Andrew Pinski 2004-10-07 19:55:15 -07:00
parent 131263fa87
commit 9c859be169
1 changed files with 1 additions and 1 deletions

View File

@ -1022,7 +1022,7 @@ __moddi3 (DWtype u, DWtype v)
if (vv.s.high < 0)
vv.ll = -vv.ll;
(void) __udivmoddi4 (uu.ll, vv.ll, &w);
(void) __udivmoddi4 (uu.ll, vv.ll, (UDWtype*)&w);
if (c)
w = -w;