[compiler-rt] 702c38e - [asan] Fix-forward #131975 by renaming 'TryReExecWithoutASLR'
Thurston Dang via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 00:01:09 PDT 2025
Author: Thurston Dang
Date: 2025-03-24T07:00:57Z
New Revision: 702c38ed7cff8329ed7093b64e51c47c668fadf3
URL: https://github.com/llvm/llvm-project/commit/702c38ed7cff8329ed7093b64e51c47c668fadf3
DIFF: https://github.com/llvm/llvm-project/commit/702c38ed7cff8329ed7093b64e51c47c668fadf3.diff
LOG: [asan] Fix-forward #131975 by renaming 'TryReExecWithoutASLR'
Function definition added in #131975 was missing 'Try' (do or do not ...). My guess is buildbots
mostly didn't trip because usage was gated by 'if (sizeof(uptr) ==
32)', which is rare among buildbots.
Added:
Modified:
compiler-rt/lib/asan/asan_linux.cpp
Removed:
################################################################################
diff --git a/compiler-rt/lib/asan/asan_linux.cpp b/compiler-rt/lib/asan/asan_linux.cpp
index 01cf46dc2fa7d..3b40f76836efe 100644
--- a/compiler-rt/lib/asan/asan_linux.cpp
+++ b/compiler-rt/lib/asan/asan_linux.cpp
@@ -111,7 +111,7 @@ void FlushUnneededASanShadowMemory(uptr p, uptr size) {
ReleaseMemoryPagesToOS(MemToShadow(p), MemToShadow(p + size));
}
-void ReExecWithoutASLR() {
+void TryReExecWithoutASLR() {
# if SANITIZER_LINUX
// ASLR personality check.
// Caution: 'personality' is sometimes forbidden by sandboxes, so only call
More information about the llvm-commits
mailing list