[PATCH] D122631: [scudo] Fix definition of canCache() function

Dominic Chen via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 29 14:26:35 PDT 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGd0eeb0fba09f: [scudo] Fix definition of canCache() function (authored by ddcc).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D122631

Files:
  compiler-rt/lib/scudo/standalone/secondary.h


Index: compiler-rt/lib/scudo/standalone/secondary.h
===================================================================
--- compiler-rt/lib/scudo/standalone/secondary.h
+++ compiler-rt/lib/scudo/standalone/secondary.h
@@ -459,7 +459,7 @@
     }
   }
 
-  uptr canCache(uptr Size) { return Cache.canCache(Size); }
+  bool canCache(uptr Size) { return Cache.canCache(Size); }
 
   bool setOption(Option O, sptr Value) { return Cache.setOption(O, Value); }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122631.418984.patch
Type: text/x-patch
Size: 456 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220329/d119876d/attachment.bin>


More information about the llvm-commits mailing list