@@ -432,16 +432,6 @@ LogicalResult ForallOp::verifyRegions() {
432432 return verifyQuantifierRegions (*this );
433433}
434434
435- void ForallOp::build (
436- OpBuilder &odsBuilder, OperationState &odsState, TypeRange boundVarTypes,
437- function_ref<Value(OpBuilder &, Location, ValueRange)> bodyBuilder,
438- std::optional<ArrayRef<StringRef>> boundVarNames,
439- function_ref<ValueRange(OpBuilder &, Location, ValueRange)> patternBuilder,
440- uint32_t weight, bool noPattern) {
441- buildQuantifier<Properties>(odsBuilder, odsState, boundVarTypes, bodyBuilder,
442- boundVarNames, patternBuilder, weight, noPattern);
443- }
444-
445435// ===----------------------------------------------------------------------===//
446436// ExistsOp
447437// ===----------------------------------------------------------------------===//
@@ -458,15 +448,5 @@ LogicalResult ExistsOp::verifyRegions() {
458448 return verifyQuantifierRegions (*this );
459449}
460450
461- void ExistsOp::build (
462- OpBuilder &odsBuilder, OperationState &odsState, TypeRange boundVarTypes,
463- function_ref<Value(OpBuilder &, Location, ValueRange)> bodyBuilder,
464- std::optional<ArrayRef<StringRef>> boundVarNames,
465- function_ref<ValueRange(OpBuilder &, Location, ValueRange)> patternBuilder,
466- uint32_t weight, bool noPattern) {
467- buildQuantifier<Properties>(odsBuilder, odsState, boundVarTypes, bodyBuilder,
468- boundVarNames, patternBuilder, weight, noPattern);
469- }
470-
471451#define GET_OP_CLASSES
472452#include " mlir/Dialect/SMT/IR/SMT.cpp.inc"
0 commit comments