[compiler-rt] [llvm] [TSan, SanitizerBinaryMetadata] Analyze the capture status for `alloca` rather than arbitrary `Addr` (PR #132756)

via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 24 19:23:04 PDT 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 058a4e8170f2c66764b78c88e574d5c364c6bd93 1b94efe9843beaa3a4348c37e27dd2d10558e8c1 --extensions cpp -- compiler-rt/test/tsan/stack_race3.cpp llvm/lib/Transforms/Instrumentation/SanitizerBinaryMetadata.cpp llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/compiler-rt/test/tsan/stack_race3.cpp b/compiler-rt/test/tsan/stack_race3.cpp
index 5078d81f3c..c50f4ad4c3 100644
--- a/compiler-rt/test/tsan/stack_race3.cpp
+++ b/compiler-rt/test/tsan/stack_race3.cpp
@@ -3,7 +3,7 @@
 
 void *Thread(void *a) {
   barrier_wait(&barrier);
-  ((int*)a)[1] = 43;
+  ((int *)a)[1] = 43;
   return 0;
 }
 
@@ -19,4 +19,3 @@ int main() {
 
 // CHECK: WARNING: ThreadSanitizer: data race
 // CHECK:   Location is stack of main thread.
-

``````````

</details>


https://github.com/llvm/llvm-project/pull/132756


More information about the llvm-commits mailing list