[Mlir-commits] [mlir] [mlir][vector] Add patterns for vector masked load/store (PR #74834)

Jakub Kuderski llvmlistbot at llvm.org
Tue Dec 12 12:34:36 PST 2023


================
@@ -776,6 +776,32 @@ struct TestFoldArithExtensionIntoVectorContractPatterns
     (void)applyPatternsAndFoldGreedily(getOperation(), std::move(patterns));
   }
 };
+
+struct TestVectorMaskedLoadStoreLowering
+    : public PassWrapper<TestVectorMaskedLoadStoreLowering,
----------------
kuhar wrote:

nit: we can make the struct final and use `override` uniformly across methods
```suggestion
struct TestVectorMaskedLoadStoreLowering final
    : PassWrapper<TestVectorMaskedLoadStoreLowering,
```

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


More information about the Mlir-commits mailing list