about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-10-09 19:23:05 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-10-09 19:23:05 +0000
commitcb8f9562a53b54ffbcc0b4ba4a6ac5e56b05beb2 (patch)
treee8341ddb2273e257c4e6d3148fddfcfcccbfb8de
parent5b60c59de550dc359ef08f1584e2f574b804041f (diff)
downloadglibc-cb8f9562a53b54ffbcc0b4ba4a6ac5e56b05beb2.tar.gz
glibc-cb8f9562a53b54ffbcc0b4ba4a6ac5e56b05beb2.tar.xz
glibc-cb8f9562a53b54ffbcc0b4ba4a6ac5e56b05beb2.zip
soft-fp: Remove trailing semicolon from _FP_FRAC_DISASSEMBLE_4.
-rw-r--r--ChangeLog5
-rw-r--r--soft-fp/op-4.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9565708579..00ba832291 100644
--- 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.
diff --git a/soft-fp/op-4.h b/soft-fp/op-4.h
index f16870d0f7..7fccbd52be 100644
--- a/soft-fp/op-4.h
+++ b/soft-fp/op-4.h
@@ -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 {						\