From: Chandler Carruth Date: Mon, 14 Apr 2014 04:46:30 +0000 (+0000) Subject: Fix the compile from r206147 in release builds by moving a variable X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e20c45d2d8d9c3ddf909babbd1013128685b70d2;p=oota-llvm.git Fix the compile from r206147 in release builds by moving a variable declaration outside of #ifndef NDEBUG -- its used elsewhere. Sorry for the noise. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206148 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/Allocator.h b/include/llvm/Support/Allocator.h index 08878aef787..9e567e567af 100644 --- a/include/llvm/Support/Allocator.h +++ b/include/llvm/Support/Allocator.h @@ -285,8 +285,8 @@ private: void DeallocateCustomSizedSlabs() { for (auto &PtrAndSize : CustomSizedSlabs) { void *Ptr = PtrAndSize.first; -#ifndef NDEBUG size_t Size = PtrAndSize.second; +#ifndef NDEBUG // Poison the memory so stale pointers crash sooner. Note we must // preserve the Size and NextPtr fields at the beginning. sys::Memory::setRangeWritable(Ptr, Size);