[clang] [Win32][Coroutine] Fix inalloca arguments lifetime in coroutines (PR #212331)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 29 03:52:38 PDT 2026
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 origin/main HEAD --extensions cpp,h -- clang/include/clang/AST/Expr.h clang/lib/AST/Expr.cpp clang/lib/CodeGen/CGCall.cpp clang/lib/CodeGen/CGExpr.cpp clang/lib/CodeGen/CGExprAgg.cpp clang/lib/CodeGen/CGExprCXX.cpp clang/lib/CodeGen/CodeGenFunction.h clang/lib/Sema/SemaExpr.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/CodeGen/CGExprAgg.cpp b/clang/lib/CodeGen/CGExprAgg.cpp
index 1eb0b65e1..0c0dde5aa 100644
--- a/clang/lib/CodeGen/CGExprAgg.cpp
+++ b/clang/lib/CodeGen/CGExprAgg.cpp
@@ -782,7 +782,8 @@ void AggExprEmitter::VisitMaterializeTemporaryExpr(
QualType Type = E->getType();
assert((!Type->getAsCXXRecordDecl() ||
Type->getAsCXXRecordDecl()->isTriviallyCopyable()) &&
- "Non-trivially copyable MTE should not be visited as aggregate when pre-evaluated");
+ "Non-trivially copyable MTE should not be visited as aggregate when "
+ "pre-evaluated");
EmitFinalDestCopy(Type, SrcLV);
return;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/212331
More information about the cfe-commits
mailing list