From a91707224d5121c87dcdbdb8678c5880f530571a Mon Sep 17 00:00:00 2001 From: Tom de Vries Date: Mon, 13 Nov 2017 20:59:20 +0000 Subject: [PATCH] [asan] Remove semicolon after do {} while (0) Remove semicolon after "do {} while (0)" in in CHECK_SMALL_REGION llvm-svn: 318084 --- compiler-rt/lib/asan/asan_poisoning.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/asan/asan_poisoning.cc b/compiler-rt/lib/asan/asan_poisoning.cc index abb75ab3bf92..c3a82aa0049e 100644 --- a/compiler-rt/lib/asan/asan_poisoning.cc +++ b/compiler-rt/lib/asan/asan_poisoning.cc @@ -217,7 +217,7 @@ uptr __asan_region_is_poisoned(uptr beg, uptr size) { uptr __bad = __asan_region_is_poisoned(__p, __size); \ __asan_report_error(pc, bp, sp, __bad, isWrite, __size, 0);\ } \ - } while (false); \ + } while (false) extern "C" SANITIZER_INTERFACE_ATTRIBUTE