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/CIR/Dialect/Builder/CIRBaseBuilder.h
clang/lib/CIR/Dialect/IR/CIRDialect.cpp
clang/lib/CIR/Interfaces/CIRLoopOpInterface.cpp
clang/unittests/CIR/ControlFlowTest.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/include/clang/CIR/Dialect/Builder/CIRBaseBuilder.h
b/clang/include/clang/CIR/Dialect/Builder/CIRBaseBuilder.h
index 425fa68ad..fbbf54314 100644
--- a/clang/include/clang/CIR/Dialect/Builder/CIRBaseBuilder.h
+++ b/clang/include/clang/CIR/Dialect/Builder/CIRBaseBuilder.h
@@ -272,7 +272,8 @@ public:
mlir::Location loc,
llvm::function_ref<void(mlir::OpBuilder &, mlir::Location)> condBuilder,
llvm::function_ref<void(mlir::OpBuilder &, mlir::Location)> bodyBuilder,
- llvm::function_ref<void(mlir::OpBuilder &, mlir::Location)>
cleanupBuilder,
+ llvm::function_ref<void(mlir::OpBuilder &, mlir::Location)>
+ cleanupBuilder,
cir::CleanupKind cleanupKind) {
return cir::WhileOp::create(*this, loc, condBuilder, bodyBuilder,
cleanupBuilder, cleanupKind);
@@ -294,7 +295,8 @@ public:
llvm::function_ref<void(mlir::OpBuilder &, mlir::Location)> condBuilder,
llvm::function_ref<void(mlir::OpBuilder &, mlir::Location)> bodyBuilder,
llvm::function_ref<void(mlir::OpBuilder &, mlir::Location)> stepBuilder,
- llvm::function_ref<void(mlir::OpBuilder &, mlir::Location)>
cleanupBuilder,
+ llvm::function_ref<void(mlir::OpBuilder &, mlir::Location)>
+ cleanupBuilder,
cir::CleanupKind cleanupKind) {
return cir::ForOp::create(*this, loc, condBuilder, bodyBuilder,
stepBuilder,
cleanupBuilder, cleanupKind);
diff --git a/clang/unittests/CIR/ControlFlowTest.cpp
b/clang/unittests/CIR/ControlFlowTest.cpp
index 2aa00a9c5..07df0bb83 100644
--- a/clang/unittests/CIR/ControlFlowTest.cpp
+++ b/clang/unittests/CIR/ControlFlowTest.cpp
@@ -439,8 +439,7 @@ TEST_F(CIRControlFlowTest, WhileOpWithCleanup) {
expectSuccessors(whileOp, RegionBranchPoint::parent(), {&whileOp.getCond()});
// Condition branches to the body or, on the false edge, the cleanup region.
- expectTerminatorSuccessors(whileOp.getCond(),
- {&whileOp.getBody(), cleanup});
+ expectTerminatorSuccessors(whileOp.getCond(), {&whileOp.getBody(), cleanup});
// Body routes through the cleanup region (there is no step region).
expectTerminatorSuccessors(whileOp.getBody(), {cleanup});
``````````
</details>
https://github.com/llvm/llvm-project/pull/210212
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits