[Mlir-commits] [mlir] [mlir][Transforms] Add a utility method to move value definitions. (PR #130874)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Tue Mar 11 18:34:50 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 4f60f45130c6bd96c79e468fe9927a29af760f56 00624428051e99ff9206942bbdab444905cf2eca --extensions cpp,h -- mlir/include/mlir/Transforms/RegionUtils.h mlir/lib/Transforms/Utils/RegionUtils.cpp mlir/test/lib/Transforms/TestTransformsOps.cpp
``````````

</details>

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

``````````diff
diff --git a/mlir/test/lib/Transforms/TestTransformsOps.cpp b/mlir/test/lib/Transforms/TestTransformsOps.cpp
index 3d95af59f6..c05b32bed9 100644
--- a/mlir/test/lib/Transforms/TestTransformsOps.cpp
+++ b/mlir/test/lib/Transforms/TestTransformsOps.cpp
@@ -41,8 +41,8 @@ transform::TestMoveOperandDeps::apply(TransformRewriter &rewriter,
 
 DiagnosedSilenceableFailure
 transform::TestMoveValueDefns::apply(TransformRewriter &rewriter,
-                                      TransformResults &TransformResults,
-                                      TransformState &state) {
+                                     TransformResults &TransformResults,
+                                     TransformState &state) {
   SmallVector<Value> values;
   for (auto tdValue : getValues()) {
     values.push_back(*state.getPayloadValues(tdValue).begin());
@@ -56,7 +56,6 @@ transform::TestMoveValueDefns::apply(TransformRewriter &rewriter,
   return DiagnosedSilenceableFailure::success();
 }
 
-
 namespace {
 
 class TestTransformsDialectExtension

``````````

</details>


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


More information about the Mlir-commits mailing list