[compiler-rt] [asan] Re-exec without ASLR if needed on 32-bit Linux (PR #131975)
Florian Mayer via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 13:23:53 PDT 2025
================
@@ -109,6 +109,15 @@ void InitializeShadowMemory() {
ProtectGap(kShadowGap2Beg, kShadowGap2End - kShadowGap2Beg + 1);
ProtectGap(kShadowGap3Beg, kShadowGap3End - kShadowGap3Beg + 1);
} else {
+# if SANITIZER_LINUX
----------------
fmayer wrote:
if the call is within this guard, why do we need a dummy for macos and windows?
https://github.com/llvm/llvm-project/pull/131975
More information about the llvm-commits
mailing list