diff options
Diffstat (limited to 'lib_blackfin/muldi3.c')
-rw-r--r-- | lib_blackfin/muldi3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_blackfin/muldi3.c b/lib_blackfin/muldi3.c index a5622424fd7..1fc34e3d932 100644 --- a/lib_blackfin/muldi3.c +++ b/lib_blackfin/muldi3.c @@ -80,13 +80,13 @@ DItype __muldi3 (DItype u, DItype v) { DIunion w; DIunion uu, vv; - + uu.ll = u, vv.ll = v; /* panic("kernel panic for __muldi3"); */ w.ll = __umulsidi3 (uu.s.low, vv.s.low); w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high + (USItype) uu.s.high * (USItype) vv.s.low); - + return w.ll; } |