[mips] Define `mov.d` instructions using `ABSS_M` multiclass. NFC

llvm-svn: 356051
This commit is contained in:
Simon Atanasyan 2019-03-13 14:22:58 +00:00
parent 3bb5d0bb9b
commit ab45d68406
1 changed files with 1 additions and 6 deletions

View File

@ -550,12 +550,7 @@ let AdditionalPredicates = [NotInMicroMips] in {
let isMoveReg = 1 in {
def FMOV_S : MMRel, ABSS_FT<"mov.s", FGR32Opnd, FGR32Opnd, II_MOV_S>,
ABSS_FM<0x6, 16>, ISA_MIPS1;
def FMOV_D32 : MMRel, ABSS_FT<"mov.d", AFGR64Opnd, AFGR64Opnd, II_MOV_D>,
ABSS_FM<0x6, 17>, ISA_MIPS1, FGR_32;
def FMOV_D64 : ABSS_FT<"mov.d", FGR64Opnd, FGR64Opnd, II_MOV_D>,
ABSS_FM<0x6, 17>, ISA_MIPS1, FGR_64 {
let DecoderNamespace = "MipsFP64";
}
defm FMOV : ABSS_M<"mov.d", II_MOV_D>, ABSS_FM<0x6, 17>, ISA_MIPS1;
} // isMoveReg
}