Index: compiler-rt/trunk/lib/lsan/lsan_common_mac.cc =================================================================== --- compiler-rt/trunk/lib/lsan/lsan_common_mac.cc +++ compiler-rt/trunk/lib/lsan/lsan_common_mac.cc @@ -71,9 +71,9 @@ AllocatorCache *GetAllocatorCache() { return &get_tls_val(true)->cache; } -void InitializePlatformSpecificModules() { - CHECK(0 && "unimplemented"); -} +// Required on Linux for initialization of TLS behavior, but should not be +// required on Darwin. +void InitializePlatformSpecificModules() {} // Scans global variables for heap pointers. void ProcessGlobalRegions(Frontier *frontier) {