[PATCH] D59045: [mips] Fix encoding of the `mov.d` command for microMIPS R6

Petar Avramovic via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 7 02:43:38 PST 2019


Petar.Avramovic added a comment.

FMOV_D64_MM cannot be selected. Maybe you can do the following change instead in file
`/lib/Target/Mips/MipsSEInstrInfo.cpp` 
`line 147:`

  else if (Mips::FGR64RegClass.contains(DestReg, SrcReg))
    Opc = isMicroMips ? Mips::FMOV_D64_MM : Mips::FMOV_D64;


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D59045/new/

https://reviews.llvm.org/D59045





More information about the llvm-commits mailing list