@@ -173,7 +173,7 @@ namespace {
173173// ===----------------------------------------------------------------------===//
174174
175175struct ConvertConstant final : OpConversionPattern<arith::ConstantOp> {
176- using OpConversionPattern::OpConversionPattern ;
176+ using Base::Base ;
177177
178178 LogicalResult
179179 matchAndRewrite (arith::ConstantOp op, OpAdaptor,
@@ -235,7 +235,7 @@ struct ConvertConstant final : OpConversionPattern<arith::ConstantOp> {
235235// ===----------------------------------------------------------------------===//
236236
237237struct ConvertAddI final : OpConversionPattern<arith::AddIOp> {
238- using OpConversionPattern::OpConversionPattern ;
238+ using Base::Base ;
239239
240240 LogicalResult
241241 matchAndRewrite (arith::AddIOp op, OpAdaptor adaptor,
@@ -325,7 +325,7 @@ static arith::CmpIPredicate toUnsignedPredicate(arith::CmpIPredicate pred) {
325325}
326326
327327struct ConvertCmpI final : OpConversionPattern<arith::CmpIOp> {
328- using OpConversionPattern::OpConversionPattern ;
328+ using Base::Base ;
329329
330330 LogicalResult
331331 matchAndRewrite (arith::CmpIOp op, OpAdaptor adaptor,
@@ -381,7 +381,7 @@ struct ConvertCmpI final : OpConversionPattern<arith::CmpIOp> {
381381// ===----------------------------------------------------------------------===//
382382
383383struct ConvertMulI final : OpConversionPattern<arith::MulIOp> {
384- using OpConversionPattern::OpConversionPattern ;
384+ using Base::Base ;
385385
386386 LogicalResult
387387 matchAndRewrite (arith::MulIOp op, OpAdaptor adaptor,
@@ -422,7 +422,7 @@ struct ConvertMulI final : OpConversionPattern<arith::MulIOp> {
422422// ===----------------------------------------------------------------------===//
423423
424424struct ConvertExtSI final : OpConversionPattern<arith::ExtSIOp> {
425- using OpConversionPattern::OpConversionPattern ;
425+ using Base::Base ;
426426
427427 LogicalResult
428428 matchAndRewrite (arith::ExtSIOp op, OpAdaptor adaptor,
@@ -460,7 +460,7 @@ struct ConvertExtSI final : OpConversionPattern<arith::ExtSIOp> {
460460// ===----------------------------------------------------------------------===//
461461
462462struct ConvertExtUI final : OpConversionPattern<arith::ExtUIOp> {
463- using OpConversionPattern::OpConversionPattern ;
463+ using Base::Base ;
464464
465465 LogicalResult
466466 matchAndRewrite (arith::ExtUIOp op, OpAdaptor adaptor,
@@ -598,7 +598,7 @@ struct ConvertIndexCastIndexToInt final : OpConversionPattern<CastOp> {
598598// ===----------------------------------------------------------------------===//
599599
600600struct ConvertSelect final : OpConversionPattern<arith::SelectOp> {
601- using OpConversionPattern::OpConversionPattern ;
601+ using Base::Base ;
602602
603603 LogicalResult
604604 matchAndRewrite (arith::SelectOp op, OpAdaptor adaptor,
@@ -631,7 +631,7 @@ struct ConvertSelect final : OpConversionPattern<arith::SelectOp> {
631631// ===----------------------------------------------------------------------===//
632632
633633struct ConvertShLI final : OpConversionPattern<arith::ShLIOp> {
634- using OpConversionPattern::OpConversionPattern ;
634+ using Base::Base ;
635635
636636 LogicalResult
637637 matchAndRewrite (arith::ShLIOp op, OpAdaptor adaptor,
@@ -720,7 +720,7 @@ struct ConvertShLI final : OpConversionPattern<arith::ShLIOp> {
720720// ===----------------------------------------------------------------------===//
721721
722722struct ConvertShRUI final : OpConversionPattern<arith::ShRUIOp> {
723- using OpConversionPattern::OpConversionPattern ;
723+ using Base::Base ;
724724
725725 LogicalResult
726726 matchAndRewrite (arith::ShRUIOp op, OpAdaptor adaptor,
@@ -809,7 +809,7 @@ struct ConvertShRUI final : OpConversionPattern<arith::ShRUIOp> {
809809// ===----------------------------------------------------------------------===//
810810
811811struct ConvertShRSI final : OpConversionPattern<arith::ShRSIOp> {
812- using OpConversionPattern::OpConversionPattern ;
812+ using Base::Base ;
813813
814814 LogicalResult
815815 matchAndRewrite (arith::ShRSIOp op, OpAdaptor adaptor,
@@ -872,7 +872,7 @@ struct ConvertShRSI final : OpConversionPattern<arith::ShRSIOp> {
872872// ===----------------------------------------------------------------------===//
873873
874874struct ConvertSubI final : OpConversionPattern<arith::SubIOp> {
875- using OpConversionPattern::OpConversionPattern ;
875+ using Base::Base ;
876876
877877 LogicalResult
878878 matchAndRewrite (arith::SubIOp op, OpAdaptor adaptor,
@@ -912,7 +912,7 @@ struct ConvertSubI final : OpConversionPattern<arith::SubIOp> {
912912// ===----------------------------------------------------------------------===//
913913
914914struct ConvertSIToFP final : OpConversionPattern<arith::SIToFPOp> {
915- using OpConversionPattern::OpConversionPattern ;
915+ using Base::Base ;
916916
917917 LogicalResult
918918 matchAndRewrite (arith::SIToFPOp op, OpAdaptor adaptor,
@@ -951,7 +951,7 @@ struct ConvertSIToFP final : OpConversionPattern<arith::SIToFPOp> {
951951// ===----------------------------------------------------------------------===//
952952
953953struct ConvertUIToFP final : OpConversionPattern<arith::UIToFPOp> {
954- using OpConversionPattern::OpConversionPattern ;
954+ using Base::Base ;
955955
956956 LogicalResult
957957 matchAndRewrite (arith::UIToFPOp op, OpAdaptor adaptor,
@@ -1015,7 +1015,7 @@ struct ConvertUIToFP final : OpConversionPattern<arith::UIToFPOp> {
10151015// ===----------------------------------------------------------------------===//
10161016
10171017struct ConvertFPToSI final : OpConversionPattern<arith::FPToSIOp> {
1018- using OpConversionPattern::OpConversionPattern ;
1018+ using Base::Base ;
10191019
10201020 LogicalResult
10211021 matchAndRewrite (arith::FPToSIOp op, OpAdaptor adaptor,
@@ -1065,7 +1065,7 @@ struct ConvertFPToSI final : OpConversionPattern<arith::FPToSIOp> {
10651065// ===----------------------------------------------------------------------===//
10661066
10671067struct ConvertFPToUI final : OpConversionPattern<arith::FPToUIOp> {
1068- using OpConversionPattern::OpConversionPattern ;
1068+ using Base::Base ;
10691069
10701070 LogicalResult
10711071 matchAndRewrite (arith::FPToUIOp op, OpAdaptor adaptor,
@@ -1137,7 +1137,7 @@ struct ConvertFPToUI final : OpConversionPattern<arith::FPToUIOp> {
11371137// ===----------------------------------------------------------------------===//
11381138
11391139struct ConvertTruncI final : OpConversionPattern<arith::TruncIOp> {
1140- using OpConversionPattern::OpConversionPattern ;
1140+ using Base::Base ;
11411141
11421142 LogicalResult
11431143 matchAndRewrite (arith::TruncIOp op, OpAdaptor adaptor,
@@ -1166,7 +1166,7 @@ struct ConvertTruncI final : OpConversionPattern<arith::TruncIOp> {
11661166// ===----------------------------------------------------------------------===//
11671167
11681168struct ConvertVectorPrint final : OpConversionPattern<vector::PrintOp> {
1169- using OpConversionPattern::OpConversionPattern ;
1169+ using Base::Base ;
11701170
11711171 LogicalResult
11721172 matchAndRewrite (vector::PrintOp op, OpAdaptor adaptor,
0 commit comments