[compiler-rt] Sync FuchsiaConfig with downstream's custom_scudo_config.h (PR #89244)

Christopher Ferris via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 19 12:03:29 PDT 2024


================
@@ -146,9 +146,11 @@ struct FuchsiaConfig {
     // Support 39-bit VMA for riscv-64
     static const uptr RegionSizeLog = 28U;
     static const uptr GroupSizeLog = 19U;
+    static const bool EnableContiguousRegions = false;
 #else
     static const uptr RegionSizeLog = 30U;
     static const uptr GroupSizeLog = 21U;
+    static const bool EnableContiguousRegions = true;
----------------
cferris1000 wrote:

The default is true, so it doesn't seem you would need to explicitly set this to true.

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


More information about the llvm-commits mailing list