summaryrefslogtreecommitdiff
path: root/src/mpfr-longlong.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mpfr-longlong.h')
-rw-r--r--src/mpfr-longlong.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mpfr-longlong.h b/src/mpfr-longlong.h
index d3ffbecb8..c29c688fb 100644
--- a/src/mpfr-longlong.h
+++ b/src/mpfr-longlong.h
@@ -1887,11 +1887,11 @@ extern UWtype __MPN(udiv_qrnnd) (UWtype *, UWtype, UWtype, UWtype);
/* FIXME: "sidi" here is highly doubtful, should sometimes be "diti". */
#if !defined (umul_ppmm) && defined (__umulsidi3)
#define umul_ppmm(ph, pl, m0, m1) \
- { \
+ do { \
UDWtype __ll = __umulsidi3 (m0, m1); \
ph = (UWtype) (__ll >> W_TYPE_SIZE); \
pl = (UWtype) __ll; \
- }
+ } while (0)
#endif
#if !defined (__umulsidi3)