[clang] [clang] Fix a crash from nested ArrayInitLoopExpr (PR #67722)

via cfe-commits cfe-commits at lists.llvm.org
Thu Sep 28 12:03:50 PDT 2023


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 3231a365c185094abe8af5970ccdbcbcd2bc001a 5125de27700e5ba8535deaf6039d578890f9f96d -- clang/test/AST/nested-array-init-loop-in-lambda-capture.cpp clang/lib/AST/ExprConstant.cpp
``````````

</details>

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

``````````diff
diff --git a/clang/lib/AST/ExprConstant.cpp b/clang/lib/AST/ExprConstant.cpp
index 3a4ef8167291..a1f5c262ca10 100644
--- a/clang/lib/AST/ExprConstant.cpp
+++ b/clang/lib/AST/ExprConstant.cpp
@@ -10972,10 +10972,11 @@ bool ArrayExprEvaluator::VisitArrayInitLoopExpr(const ArrayInitLoopExpr *E) {
                          Info, Subobject, E->getSubExpr()) ||
         !HandleLValueArrayAdjustment(Info, E, Subobject,
                                      CAT->getElementType(), 1)) {
-      
-      // There's no need to try and evaluate the rest, as those are the exact same expressions.
+
+      // There's no need to try and evaluate the rest, as those are the exact
+      // same expressions.
       std::ignore = Info.noteFailure();
-        return false;
+      return false;
     }
   }
 

``````````

</details>


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


More information about the cfe-commits mailing list