summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--longlong.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/longlong.h b/longlong.h
index 9928b3bce..bf35f5389 100644
--- a/longlong.h
+++ b/longlong.h
@@ -1657,7 +1657,7 @@ extern UWtype __MPN(udiv_qrnnd) (UWtype *, UWtype, UWtype, UWtype);
do { \
UDItype __u = (u), __v = (v); \
(pl) = __u * __v; \
- __asm__ ("mulhu\t%2, %1, %0" : "=r" (ph) : "%r" (__u), "r" (__v)); \
+ __asm__ ("mulhu\t%0, %1, %2" : "=r" (ph) : "%r" (__u), "r" (__v)); \
} while (0)
#endif