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 | 67289582795abbd907e4445188b307b0b43825bd (patch) | |
tree | 900e424c383bc16a2b6bd749734095f5f5a13352 /llvm/lib/Target/Mips/MipsInstrInfo.cpp | |
parent | 9978e3709f9a9d16e77480fd60fce29beda728ff (diff) | |
download | bcm5719-llvm-67289582795abbd907e4445188b307b0b43825bd.tar.gz bcm5719-llvm-67289582795abbd907e4445188b307b0b43825bd.zip |
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.
llvm-svn: 140735
Diffstat (limited to 'llvm/lib/Target/Mips/MipsInstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MipsInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsInstrInfo.cpp b/llvm/lib/Target/Mips/MipsInstrInfo.cpp index 7d4aa61422f..e4cac688fd9 100644 --- a/llvm/lib/Target/Mips/MipsInstrInfo.cpp +++ b/llvm/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; } |