[PATCH] D39433: [sanitizer][Fuchsia] Add a missing semicolon

Petr Hosek via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 30 14:30:04 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL316959: [sanitizer][Fuchsia] Add a missing semicolon (authored by phosek).

Changed prior to commit:
  https://reviews.llvm.org/D39433?vs=120886&id=120892#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D39433

Files:
  compiler-rt/trunk/lib/sanitizer_common/sanitizer_fuchsia.cc


Index: compiler-rt/trunk/lib/sanitizer_common/sanitizer_fuchsia.cc
===================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_fuchsia.cc
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_fuchsia.cc
@@ -255,7 +255,7 @@
   void* addr_as_void = reinterpret_cast<void*>(addr);
   uptr base_as_uptr = reinterpret_cast<uptr>(base_);
   // Only unmap at the beginning or end of the range.
-  CHECK((addr_as_void == base_) || (addr + size == base_as_uptr + size_))
+  CHECK((addr_as_void == base_) || (addr + size == base_as_uptr + size_));
   CHECK_LE(size, size_);
   UnmapOrDie(reinterpret_cast<void*>(addr), size);
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39433.120892.patch
Type: text/x-patch
Size: 679 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171030/eaea892b/attachment.bin>


More information about the llvm-commits mailing list