aboutsummaryrefslogtreecommitdiff
path: root/libcpp/lex.c
diff options
context:
space:
mode:
authorTom de Vries <tom@codesourcery.com>2017-11-05 09:58:16 +0000
committerTom de Vries <vries@gcc.gnu.org>2017-11-05 09:58:16 +0000
commitc830c7d5c738a21dc6d8021ce28955590361264e (patch)
tree7041681d22ace5473c15779cbed6688f683f3ed0 /libcpp/lex.c
parent9739c3d303bcf12aaa762062c1352717260f5ccb (diff)
downloadgcc-c830c7d5c738a21dc6d8021ce28955590361264e.zip
gcc-c830c7d5c738a21dc6d8021ce28955590361264e.tar.gz
gcc-c830c7d5c738a21dc6d8021ce28955590361264e.tar.bz2
[libcpp] Remove semicolon after do {} while (0) in BUF_APPEND
2017-11-05 Tom de Vries <tom@codesourcery.com> PR other/82784 * lex.c (BUF_APPEND): Remove semicolon after "do {} while (0)". From-SVN: r254424
Diffstat (limited to 'libcpp/lex.c')
-rw-r--r--libcpp/lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/lex.c b/libcpp/lex.c
index 40ff801..9164a07 100644
--- a/libcpp/lex.c
+++ b/libcpp/lex.c
@@ -1647,7 +1647,7 @@ lex_raw_string (cpp_reader *pfile, cpp_token *token, const uchar *base,
(const uchar *)(STR), (LEN)); \
temp_buffer_len += (LEN); \
} \
- } while (0);
+ } while (0)
orig_base = base;
++cur;