[libquadmath] Remove semicolon after do {} while (0) in MPN_MUL_N_RECURSE
authorTom de Vries <tom@codesourcery.com>
Sun, 5 Nov 2017 09:57:30 +0000 (09:57 +0000)
committerTom de Vries <vries@gcc.gnu.org>
Sun, 5 Nov 2017 09:57:30 +0000 (09:57 +0000)
2017-11-05  Tom de Vries  <tom@codesourcery.com>

PR other/82784
* printf/gmp-impl.h (MPN_MUL_N_RECURSE): Remove semicolon after
"do {} while (0)".

From-SVN: r254420

libquadmath/ChangeLog
libquadmath/printf/gmp-impl.h

index c897d33a2bcef673e21dae1b94a81387575f92c7..1d152bbd8b6c3c9ee9c3c13add9f6b3b2dece3de 100644 (file)
@@ -1,3 +1,9 @@
+2017-11-05  Tom de Vries  <tom@codesourcery.com>
+
+       PR other/82784
+       * printf/gmp-impl.h (MPN_MUL_N_RECURSE): Remove semicolon after
+       "do {} while (0)".
+
 2017-09-01  Michael Meissner  <meissner@linux.vnet.ibm.com>
 
        PR libquadmath/81848
index 969574c853a2ca0fa96af265e51cc1040c5c63c1..94d88efc57f168ff5e86eff2fd74708f3bc1dc14 100644 (file)
@@ -91,7 +91,7 @@ typedef unsigned int UHWtype;
       impn_mul_n_basecase (prodp, up, vp, size);                       \
     else                                                               \
       impn_mul_n (prodp, up, vp, size, tspace);                        \
-  } while (0);
+  } while (0)
 
 #define __MPN(x) __quadmath_mpn_##x