[llvm] [StackProtector] Fix phi handling in HasAddressTaken() (PR #129248)

via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 28 06:14:21 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 5d89123a3962016216e377463b4b3c97df927016 3ea48c75f2dcc3f0c444194f65ff52aee5a2a9e4 --extensions cpp -- llvm/lib/CodeGen/StackProtector.cpp
``````````

</details>

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

``````````diff
diff --git a/llvm/lib/CodeGen/StackProtector.cpp b/llvm/lib/CodeGen/StackProtector.cpp
index 83f90b4ffd..fcb5f46b90 100644
--- a/llvm/lib/CodeGen/StackProtector.cpp
+++ b/llvm/lib/CodeGen/StackProtector.cpp
@@ -264,8 +264,7 @@ using PhiMap = SmallDenseMap<const PHINode *, PhiInfo, 16>;
 
 /// Check whether a stack allocation has its address taken.
 static bool HasAddressTaken(const Instruction *AI, TypeSize AllocSize,
-                            Module *M,
-                            PhiMap &VisitedPHIs) {
+                            Module *M, PhiMap &VisitedPHIs) {
   const DataLayout &DL = M->getDataLayout();
   for (const User *U : AI->users()) {
     const auto *I = cast<Instruction>(U);

``````````

</details>


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


More information about the llvm-commits mailing list