diff --git a/mlir/include/mlir/Dialect/Tosa/IR/TosaTypesBase.td b/mlir/include/mlir/Dialect/Tosa/IR/TosaTypesBase.td --- a/mlir/include/mlir/Dialect/Tosa/IR/TosaTypesBase.td +++ b/mlir/include/mlir/Dialect/Tosa/IR/TosaTypesBase.td @@ -149,7 +149,7 @@ AnyTypeOf.predicate, VectorOf.predicate, TensorOf.predicate]>, - "signless-integer-32-like">; + description>; def Tosa_Int8Like : Tosa_TypeLike<[Tosa_Int8], "signless-integer-8-bit-like">; def Tosa_Int16Like : Tosa_TypeLike<[Tosa_Int16], "signless-integer-16-bit-like">; diff --git a/mlir/include/mlir/IR/OpBase.td b/mlir/include/mlir/IR/OpBase.td --- a/mlir/include/mlir/IR/OpBase.td +++ b/mlir/include/mlir/IR/OpBase.td @@ -2083,8 +2083,7 @@ // declarations should be generated. This class takes an optional set of methods // that should have declarations generated even if the method has a default // implementation. -class DeclareInterfaceMethods overridenMethods = []> { +class DeclareInterfaceMethods overridenMethods = []> { // This field contains a set of method names that should always have their // declarations generated. This allows for generating declarations for // methods with default implementations that need to be overridden. @@ -2092,7 +2091,7 @@ } class DeclareAttrInterfaceMethods overridenMethods = []> - : DeclareInterfaceMethods, + : DeclareInterfaceMethods, AttrInterface { let description = interface.description; let cppClassName = interface.cppClassName; @@ -2101,7 +2100,7 @@ } class DeclareOpInterfaceMethods overridenMethods = []> - : DeclareInterfaceMethods, + : DeclareInterfaceMethods, OpInterface { let description = interface.description; let cppClassName = interface.cppClassName; @@ -2110,7 +2109,7 @@ } class DeclareTypeInterfaceMethods overridenMethods = []> - : DeclareInterfaceMethods, + : DeclareInterfaceMethods, TypeInterface { let description = interface.description; let cppClassName = interface.cppClassName;