]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
soft-fp: Remove trailing semicolon from _FP_FRAC_DISASSEMBLE_4.
authorJoseph Myers <joseph@codesourcery.com>
Wed, 9 Oct 2013 19:23:05 +0000 (19:23 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Wed, 9 Oct 2013 19:23:05 +0000 (19:23 +0000)
ChangeLog
soft-fp/op-4.h

index 9565708579f21fab40d0d29b027b670f5a7cd11e..00ba832291cb082d75743eff8ec0130b0845b22e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-10-09  Joseph Myers  <joseph@codesourcery.com>
+
+       * soft-fp/op-4.h (_FP_FRAC_DISASSEMBLE_4): Remove trailing
+       semicolon.  From Linux kernel.
+
 2013-10-09  Adam Buchbinder  <adam.buchbinder@gmail.com>
 
        * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Fix typo in comment.
index f16870d0f734b00eee0cf04e2df18015b63849b7..7fccbd52be56777f078a828ace591e7e12e80ea6 100644 (file)
@@ -683,7 +683,7 @@ do {                                                \
     X##_f[1] = (rsize <= _FP_W_TYPE_SIZE ? 0 : r >> _FP_W_TYPE_SIZE);  \
     X##_f[2] = (rsize <= 2*_FP_W_TYPE_SIZE ? 0 : r >> 2*_FP_W_TYPE_SIZE); \
     X##_f[3] = (rsize <= 3*_FP_W_TYPE_SIZE ? 0 : r >> 3*_FP_W_TYPE_SIZE); \
-  } while (0);
+  } while (0)
 
 #define _FP_FRAC_COPY_4_1(D, S)                        \
 do {                                           \