Revert "[sanitizer] Fix syntax error introduced in r322991"

This reverts commit r323027: it breaks the SanitizerLintCheck.

llvm-svn: 323028
This commit is contained in:
Petr Hosek 2018-01-20 03:23:45 +00:00
parent 51bbea2017
commit 2a26210187

View File

@ -113,10 +113,10 @@ class TracePcGuardController final {
// We can always spare the 32G of address space.
static constexpr size_t MappingSize = sizeof(uptr) << 32;
BlockingMutex setup_lock_ = BlockingMutex{LINKER_INITIALIZED};
BlockingMutex setup_lock_ = {LINKER_INITIALIZED};
uptr *array_ = nullptr;
u32 next_index_ = 0;
zx_handle_t vmo_ = {};
zx_handle_t vmo _ = {};
char vmo_name_[ZX_MAX_NAME_LEN] = {};
size_t DataSize() const { return next_index_ * sizeof(uintptr_t); }