diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-09-28 23:59:28 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-09-28 23:59:28 +0000 |
commit | 5cd4ee7770d5e7dad78398b78cd7b1f5812d21e1 (patch) | |
tree | 7ea5d4ffa8066843e9bbf803e5061da51d4c6ac9 /lib/Target/Mips/MipsInstrInfo.cpp | |
parent | 9b88d2d7827d19ef05d3f11faf56e4f28aaa7072 (diff) |
Revert r140731, "Define classes for unary and binary FP instructions and use them to define"
It broke the unit tests. Please reapply with tests fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140735 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsInstrInfo.cpp')
-rw-r--r-- | lib/Target/Mips/MipsInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsInstrInfo.cpp b/lib/Target/Mips/MipsInstrInfo.cpp index 7d4aa61422..e4cac688fd 100644 --- a/lib/Target/Mips/MipsInstrInfo.cpp +++ b/lib/Target/Mips/MipsInstrInfo.cpp @@ -141,7 +141,7 @@ copyPhysReg(MachineBasicBlock &MBB, } if (Mips::FGR32RegClass.contains(DestReg, SrcReg)) { - BuildMI(MBB, I, DL, get(Mips::FMOV_S), DestReg) + BuildMI(MBB, I, DL, get(Mips::FMOV_S32), DestReg) .addReg(SrcReg, getKillRegState(KillSrc)); return; } |