[llvm] [DSE] Defer alloca store elimination for CoroSplit (PR #133918)

via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 3 06:48:30 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 HEAD~1 HEAD --extensions cpp -- llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
``````````

</details>

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

``````````diff
diff --git a/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp b/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
index e43decfb5..c12ceff89 100644
--- a/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
+++ b/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
@@ -993,11 +993,11 @@ struct DSEState {
     for (BasicBlock *BB : post_order(&F)) {
       PostOrderNumbers[BB] = PO++;
       for (Instruction &I : *BB) {
-        if (auto* II = dyn_cast<IntrinsicInst>(&I)) {
-            const auto ID = II->getIntrinsicID();
-            if (ID == Intrinsic::coro_begin ||
-                ID == Intrinsic::coro_begin_custom_abi)
-              CoroId = cast<CoroIdInst>(cast<CoroBeginInst>(II)->getId());
+        if (auto *II = dyn_cast<IntrinsicInst>(&I)) {
+          const auto ID = II->getIntrinsicID();
+          if (ID == Intrinsic::coro_begin ||
+              ID == Intrinsic::coro_begin_custom_abi)
+            CoroId = cast<CoroIdInst>(cast<CoroBeginInst>(II)->getId());
         }
 
         MemoryAccess *MA = MSSA.getMemoryAccess(&I);

``````````

</details>


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


More information about the llvm-commits mailing list