[compiler-rt] 254d28f - Reland "[scudo] Enable MemMapFuchsia"

Fabio D'Urso via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 2 23:36:10 PDT 2023


Author: Fabio D'Urso
Date: 2023-08-03T08:35:28+02:00
New Revision: 254d28fc13fb1b5e584c0baf25bff9b8b01ea348

URL: https://github.com/llvm/llvm-project/commit/254d28fc13fb1b5e584c0baf25bff9b8b01ea348
DIFF: https://github.com/llvm/llvm-project/commit/254d28fc13fb1b5e584c0baf25bff9b8b01ea348.diff

LOG: Reland "[scudo] Enable MemMapFuchsia"

This reverts commit 30b11b0eeef140c96d8d59a7b2a0f801841c6968.

We've found and fixed another failing test.

Reviewed By: Caslyn

Differential Revision: https://reviews.llvm.org/D156938

Added: 
    

Modified: 
    compiler-rt/lib/scudo/standalone/mem_map.h

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/scudo/standalone/mem_map.h b/compiler-rt/lib/scudo/standalone/mem_map.h
index 409e4dbbe04b13..23d0ab61774567 100644
--- a/compiler-rt/lib/scudo/standalone/mem_map.h
+++ b/compiler-rt/lib/scudo/standalone/mem_map.h
@@ -76,7 +76,7 @@ class ReservedMemoryDefault final
 using ReservedMemoryT = ReservedMemoryDefault;
 using MemMapT = ReservedMemoryT::MemMapT;
 #elif SCUDO_FUCHSIA
-using ReservedMemoryT = ReservedMemoryDefault;
+using ReservedMemoryT = ReservedMemoryFuchsia;
 using MemMapT = ReservedMemoryT::MemMapT;
 #elif SCUDO_TRUSTY
 using ReservedMemoryT = ReservedMemoryDefault;


        


More information about the llvm-commits mailing list