[compiler-rt] r340442 - [hwasan] remove stale data field
Kostya Serebryany via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 22 12:47:19 PDT 2018
Author: kcc
Date: Wed Aug 22 12:47:19 2018
New Revision: 340442
URL: http://llvm.org/viewvc/llvm-project?rev=340442&view=rev
Log:
[hwasan] remove stale data field
Modified:
compiler-rt/trunk/lib/hwasan/hwasan_allocator.h
Modified: compiler-rt/trunk/lib/hwasan/hwasan_allocator.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/hwasan/hwasan_allocator.h?rev=340442&r1=340441&r2=340442&view=diff
==============================================================================
--- compiler-rt/trunk/lib/hwasan/hwasan_allocator.h (original)
+++ compiler-rt/trunk/lib/hwasan/hwasan_allocator.h Wed Aug 22 12:47:19 2018
@@ -19,7 +19,6 @@
namespace __hwasan {
struct HwasanThreadLocalMallocStorage {
- uptr quarantine_cache[16];
// Allocator cache contains atomic_uint64_t which must be 8-byte aligned.
ALIGNED(8) uptr allocator_cache[96 * (512 * 8 + 16)]; // Opaque.
void CommitBack();
More information about the llvm-commits
mailing list