diff --git a/lib/CAPI/Dialect/Moore.cpp b/lib/CAPI/Dialect/Moore.cpp index 7955f9580b..8b81fec8a7 100644 --- a/lib/CAPI/Dialect/Moore.cpp +++ b/lib/CAPI/Dialect/Moore.cpp @@ -175,18 +175,6 @@ MlirType mooreUnpackedQueueDimTypeGetWithBound(MlirType inner, unsigned bound) { return wrap(UnpackedQueueDim::get(cast(unwrap(inner)), bound)); } -/// Create a enum type without base. -MlirType mooreEnumTypeGet(MlirAttribute name, MlirLocation loc) { - return wrap(EnumType::get(cast(unwrap(name)), unwrap(loc))); -} - -/// Create a enum type width base. -MlirType mooreEnumTypeGetWithBase(MlirAttribute name, MlirLocation loc, - MlirType base) { - return wrap(EnumType::get(cast(unwrap(name)), unwrap(loc), - cast(unwrap(base)))); -} - /// Create a simple bit-vector type. MlirType mooreSimpleBitVectorTypeGet(MlirContext ctx, bool isFourValued, bool isSigned, unsigned size) {