[Mlir-commits] [mlir] 33c18fb - [mlir] Use value instead of getValue (NFC)

Kazu Hirata llvmlistbot at llvm.org
Fri Jul 22 23:33:57 PDT 2022


Author: Kazu Hirata
Date: 2022-07-22T23:33:46-07:00
New Revision: 33c18fbc190d3a1cd38f976b758026247120c412

URL: https://github.com/llvm/llvm-project/commit/33c18fbc190d3a1cd38f976b758026247120c412
DIFF: https://github.com/llvm/llvm-project/commit/33c18fbc190d3a1cd38f976b758026247120c412.diff

LOG: [mlir] Use value instead of getValue (NFC)

Added: 
    

Modified: 
    mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp b/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
index 94d789c7f60d..5cc900cb035a 100644
--- a/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
+++ b/mlir/lib/Dialect/Linalg/TransformOps/LinalgTransformOps.cpp
@@ -451,7 +451,7 @@ transform::MatchOp::apply(transform::TransformResults &results,
     // Interfaces cannot be matched by name, just by ID.
     // So we specifically encode the interfaces we care about for this op.
     if (getInterface().has_value()) {
-      auto iface = getInterface().getValue();
+      auto iface = getInterface().value();
       if (iface == transform::MatchInterfaceEnum::LinalgOp &&
           !isa<linalg::LinalgOp>(op))
         return WalkResult::advance();
@@ -460,7 +460,7 @@ transform::MatchOp::apply(transform::TransformResults &results,
         return WalkResult::advance();
     }
 
-    if (getAttribute().has_value() && !op->hasAttr(getAttribute().getValue()))
+    if (getAttribute().has_value() && !op->hasAttr(getAttribute().value()))
       return WalkResult::advance();
 
     // All constraints are satisfied.


        


More information about the Mlir-commits mailing list