[llvm] [llvm] Implement address sanitizer on AIX (2/3) (PR #129926)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 8 20:19:58 PST 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff 8e6fa15bc3e8a41553ffdc7fbd3d00285a250962 a6a50e70e7a62ebe032c660f6f85272f1a11d79e --extensions cpp -- llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
index 9e89d8cbab..7e07728d3d 100644
--- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -536,7 +536,7 @@ static ShadowMapping getShadowMapping(const Triple &TargetTriple, int LongSize,
else if (IsEmscripten)
Mapping.Offset = kEmscriptenShadowOffset;
else if (IsAIX)
- Mapping.Offset = kAIXShadowOffset32;
+ Mapping.Offset = kAIXShadowOffset32;
else
Mapping.Offset = kDefaultShadowOffset32;
} else { // LongSize == 64
``````````
</details>
https://github.com/llvm/llvm-project/pull/129926
More information about the llvm-commits
mailing list