From: Jakob Stoklund Olesen Date: Sun, 11 Jul 2010 17:17:35 +0000 (+0000) Subject: Remove redundant branch. Thanks, Anton! X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=4cae5af54eb3561bf2ae4397b4b8c222f74423f5;p=oota-llvm.git Remove redundant branch. Thanks, Anton! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108097 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/SystemZ/SystemZInstrInfo.cpp b/lib/Target/SystemZ/SystemZInstrInfo.cpp index 5021a8d6f50..c03864fe41e 100644 --- a/lib/Target/SystemZ/SystemZInstrInfo.cpp +++ b/lib/Target/SystemZ/SystemZInstrInfo.cpp @@ -130,8 +130,6 @@ void SystemZInstrInfo::copyPhysReg(MachineBasicBlock &MBB, Opc = SystemZ::MOV64rrP; else if (SystemZ::GR128RegClass.contains(DestReg, SrcReg)) Opc = SystemZ::MOV128rr; - else if (SystemZ::GR32RegClass.contains(DestReg, SrcReg)) - Opc = SystemZ::MOV32rr; else if (SystemZ::FP32RegClass.contains(DestReg, SrcReg)) Opc = SystemZ::FMOV32rr; else if (SystemZ::FP64RegClass.contains(DestReg, SrcReg))