diff options
author | Tom de Vries <tom@codesourcery.com> | 2017-11-05 09:57:30 +0000 |
---|---|---|
committer | Tom de Vries <vries@gcc.gnu.org> | 2017-11-05 09:57:30 +0000 |
commit | 51c20aa35aeb59c234d511cb9f53f0f3357906f4 (patch) | |
tree | b3cdb642776c46e328b5389e4704eef3e1f545c8 /libquadmath | |
parent | 735e62b9058e5127051b33db0f758b5c2c3f95f9 (diff) | |
download | gcc-51c20aa35aeb59c234d511cb9f53f0f3357906f4.zip gcc-51c20aa35aeb59c234d511cb9f53f0f3357906f4.tar.gz gcc-51c20aa35aeb59c234d511cb9f53f0f3357906f4.tar.bz2 |
[libquadmath] Remove semicolon after do {} while (0) in MPN_MUL_N_RECURSE
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
Diffstat (limited to 'libquadmath')
-rw-r--r-- | libquadmath/ChangeLog | 6 | ||||
-rw-r--r-- | libquadmath/printf/gmp-impl.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libquadmath/ChangeLog b/libquadmath/ChangeLog index c897d33..1d152bb 100644 --- a/libquadmath/ChangeLog +++ b/libquadmath/ChangeLog @@ -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 diff --git a/libquadmath/printf/gmp-impl.h b/libquadmath/printf/gmp-impl.h index 969574c..94d88ef 100644 --- a/libquadmath/printf/gmp-impl.h +++ b/libquadmath/printf/gmp-impl.h @@ -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 |