[compiler-rt] [scudo] Added LRU eviction policy to secondary cache. (PR #99409)

via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 18 22:10:13 PDT 2024


================
@@ -410,19 +442,17 @@ template <typename Config> class MapAllocatorCache {
 
   void disableMemoryTagging() EXCLUDES(Mutex) {
     ScopedLock L(Mutex);
-    for (u32 I = 0; I != Config::getQuarantineSize(); ++I) {
+    for (u32 I = 0; I != Config::getQuarantineSize(); I++) {
----------------
ChiaHungDuan wrote:

Revert this change

https://github.com/llvm/llvm-project/pull/99409


More information about the llvm-commits mailing list