[Mlir-commits] [mlir] e66e165 - [MLIR] Remove leftover field from Variadic, NFC (#176373)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Tue Jun 30 04:02:38 PDT 2026
Author: Sergio Afonso
Date: 2026-06-30T13:02:34+02:00
New Revision: e66e165da9c15365ff486e8159b868cfb7161192
URL: https://github.com/llvm/llvm-project/commit/e66e165da9c15365ff486e8159b868cfb7161192
DIFF: https://github.com/llvm/llvm-project/commit/e66e165da9c15365ff486e8159b868cfb7161192.diff
LOG: [MLIR] Remove leftover field from Variadic, NFC (#176373)
There appears to be an unused field in the `Variadic` TableGen class,
introduced originally in commit
70b69c54fa8b24519cd549eec10e549471157bb8. It looks like, when removing
the associated `VariadicAtLeast` class
(bf8049dc483131365aea3d3626a2d27b5dfa92de), this field still remained.
Added:
Modified:
mlir/include/mlir/IR/CommonTypeConstraints.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/IR/CommonTypeConstraints.td b/mlir/include/mlir/IR/CommonTypeConstraints.td
index 20c3a4734fe81..f83eea488eb21 100644
--- a/mlir/include/mlir/IR/CommonTypeConstraints.td
+++ b/mlir/include/mlir/IR/CommonTypeConstraints.td
@@ -127,7 +127,6 @@ class Variadic<Type type> : TypeConstraint<type.predicate,
"variadic of " # type.summary,
type.cppType> {
Type baseType = type;
- int minSize = 0;
}
// A nested variadic type constraint. It expands to zero or more variadic ranges
More information about the Mlir-commits
mailing list