@@ -564,9 +564,9 @@ struct MatchableInfo {
564
564
// where it was copied while being in an owning state.
565
565
MatchableInfo (const MatchableInfo &RHS)
566
566
: AsmVariantID(RHS.AsmVariantID), AsmString(RHS.AsmString),
567
- TheDef(RHS.TheDef), DefRec (RHS.DefRec ), ResOperands (RHS.ResOperands ),
568
- Mnemonic (RHS.Mnemonic ), AsmOperands (RHS.AsmOperands ),
569
- RequiredFeatures(RHS.RequiredFeatures),
567
+ TheDef(RHS.TheDef), ResInstSize (RHS.ResInstSize ), DefRec (RHS.DefRec ),
568
+ ResOperands (RHS.ResOperands ), Mnemonic (RHS.Mnemonic ),
569
+ AsmOperands(RHS.AsmOperands), RequiredFeatures(RHS.RequiredFeatures),
570
570
ConversionFnKind(RHS.ConversionFnKind),
571
571
HasDeprecation(RHS.HasDeprecation),
572
572
UseInstAsmMatchConverter(RHS.UseInstAsmMatchConverter) {
@@ -678,7 +678,7 @@ struct MatchableInfo {
678
678
return false ;
679
679
680
680
// The size of instruction is unambiguous.
681
- if (Target. getPreferSmallerInstructions () && ResInstSize != RHS.ResInstSize )
681
+ if (getPreferSmallerInstructions (Target ) && ResInstSize != RHS.ResInstSize )
682
682
return false ;
683
683
684
684
// The number of operands is unambiguous.
0 commit comments