[llvm] [coro] Fix crash due to DILabel in `LineTableOnly` mode (PR #148095)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 10 18:20:02 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/Coroutines/CoroSplit.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Transforms/Coroutines/CoroSplit.cpp b/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
index 6e5a01723..f1e17ff01 100644
--- a/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
+++ b/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
@@ -1484,10 +1484,9 @@ private:
// If there is no DISubprogram for F, it implies the function is compiled
// without debug info. So we also don't generate debug info for the
// suspension points.
- bool AddDebugLabels =
- DIS && DIS->getUnit() &&
- (DIS->getUnit()->getEmissionKind() ==
- DICompileUnit::DebugEmissionKind::FullDebug);
+ bool AddDebugLabels = DIS && DIS->getUnit() &&
+ (DIS->getUnit()->getEmissionKind() ==
+ DICompileUnit::DebugEmissionKind::FullDebug);
// resume.entry:
// %index.addr = getelementptr inbounds %f.Frame, %f.Frame* %FramePtr, i32
``````````
</details>
https://github.com/llvm/llvm-project/pull/148095
More information about the llvm-commits
mailing list