Revert r69335 and r69336. They were causing build failures.

llvm-svn: 69347
This commit is contained in:
Bill Wendling 2009-04-17 04:19:22 +00:00
parent 493d4e080d
commit 30527b1114
1 changed files with 3 additions and 5 deletions

View File

@ -667,7 +667,6 @@ bool X86InstrInfo::isMoveInstr(const MachineInstr& MI,
default:
return false;
case X86::MOV8rr:
case X86::MOV8rr_NOREX:
case X86::MOV16rr:
case X86::MOV32rr:
case X86::MOV64rr:
@ -1665,10 +1664,9 @@ bool X86InstrInfo::copyRegToReg(MachineBasicBlock &MBB,
} else if (DestRC == &X86::GR16RegClass) {
Opc = X86::MOV16rr;
} else if (DestRC == &X86::GR8RegClass) {
// Copying two or from a physical H register on x86-64 requires a NOREX
// move. Otherwise use a normal move.
if ((isHReg(DestReg) || isHReg(SrcReg)) &&
TM.getSubtarget<X86Subtarget>().is64Bit())
// Copying two or from a physical H register requires a NOREX move.
// Otherwise use a normal move.
if (isHReg(DestReg) || isHReg(SrcReg))
Opc = X86::MOV8rr_NOREX;
else
Opc = X86::MOV8rr;