[Mlir-commits] [mlir] bf8049d - [mlir][ods] (NFC) remove erroneous trait
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri May 13 17:37:41 PDT 2022
Author: Mogball
Date: 2022-05-14T00:37:34Z
New Revision: bf8049dc483131365aea3d3626a2d27b5dfa92de
URL: https://github.com/llvm/llvm-project/commit/bf8049dc483131365aea3d3626a2d27b5dfa92de
DIFF: https://github.com/llvm/llvm-project/commit/bf8049dc483131365aea3d3626a2d27b5dfa92de.diff
LOG: [mlir][ods] (NFC) remove erroneous trait
Added:
Modified:
mlir/include/mlir/IR/OpBase.td
Removed:
################################################################################
diff --git a/mlir/include/mlir/IR/OpBase.td b/mlir/include/mlir/IR/OpBase.td
index cb385867ad5b..207ae2a1ef2b 100644
--- a/mlir/include/mlir/IR/OpBase.td
+++ b/mlir/include/mlir/IR/OpBase.td
@@ -294,12 +294,6 @@ class Variadic<Type type> : TypeConstraint<type.predicate, type.summary,
int minSize = 0;
}
-// A variadic type constraint of at least N types. It expands to N or more of
-// the base type.
-class VariadicAtLeast<int N, Type type> : Variadic<type> {
- let minSize = N;
-}
-
// A nested variadic type constraint. It expands to zero or more variadic ranges
// of the base type. This class is used for supporting variadic operands and
// results. `variadicSegmentAttrName` should correspond to the name of an
More information about the Mlir-commits
mailing list