summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsSEInstrInfo.cpp
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@mips.com>2013-07-19 01:19:52 +0000
committerAkira Hatanaka <ahatanaka@mips.com>2013-07-19 01:19:52 +0000
commitda218210f7371cd47a43252756e03b6a03a6b06d (patch)
tree05450fa37ed55b8ed40a8e7e6faf9d95c416807c /lib/Target/Mips/MipsSEInstrInfo.cpp
parent1fe3f9af7ff385c28b96cc46ee1ed3737c813c3a (diff)
downloadllvm-da218210f7371cd47a43252756e03b6a03a6b06d.tar.gz
llvm-da218210f7371cd47a43252756e03b6a03a6b06d.tar.bz2
llvm-da218210f7371cd47a43252756e03b6a03a6b06d.tar.xz
[mips] Delete MFC1_FT_CCR, MTC1_FT_CCR and MOVCCRToCCR.
No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186642 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsSEInstrInfo.cpp')
-rw-r--r--lib/Target/Mips/MipsSEInstrInfo.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/Mips/MipsSEInstrInfo.cpp b/lib/Target/Mips/MipsSEInstrInfo.cpp
index e2a33ddb69..c384f316bc 100644
--- a/lib/Target/Mips/MipsSEInstrInfo.cpp
+++ b/lib/Target/Mips/MipsSEInstrInfo.cpp
@@ -141,8 +141,6 @@ void MipsSEInstrInfo::copyPhysReg(MachineBasicBlock &MBB,
Opc = Mips::FMOV_D32;
else if (Mips::FGR64RegClass.contains(DestReg, SrcReg))
Opc = Mips::FMOV_D64;
- else if (Mips::CCRRegClass.contains(DestReg, SrcReg))
- Opc = Mips::MOVCCRToCCR;
else if (Mips::CPU64RegsRegClass.contains(DestReg)) { // Copy to CPU64 Reg.
if (Mips::CPU64RegsRegClass.contains(SrcReg))
Opc = Mips::OR64, ZeroReg = Mips::ZERO_64;