summaryrefslogtreecommitdiff
path: root/lib_blackfin/muldi3.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib_blackfin/muldi3.c')
-rw-r--r--lib_blackfin/muldi3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_blackfin/muldi3.c b/lib_blackfin/muldi3.c
index a562242..1fc34e3 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;
}