[PATCH] D74429: scudo: Fix various test failures, mostly on 32-bit.

Kostya Kortchinsky via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 11 11:46:54 PST 2020


cryptoad accepted this revision.
cryptoad added inline comments.
This revision is now accepted and ready to land.


================
Comment at: compiler-rt/lib/scudo/standalone/size_class_map.h:27
   static u32 getMaxCachedHint(uptr Size) {
-    DCHECK_LE(Size, (1UL << Config::MaxSizeLog) + Chunk::getHeaderSize());
     DCHECK_NE(Size, 0);
----------------
Isn't that still true?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D74429/new/

https://reviews.llvm.org/D74429





More information about the llvm-commits mailing list