1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

Use movaps to do VR128 reg-to-reg copies for now. It's shorter and available for SSE1.

llvm-svn: 27554
This commit is contained in:
Evan Cheng 2006-04-10 07:21:31 +00:00
parent 10511d57b5
commit 4f357911ad

View File

@ -115,7 +115,7 @@ void X86RegisterInfo::copyRegToReg(MachineBasicBlock &MBB,
} else if (RC == &X86::FR64RegClass) {
Opc = X86::FsMOVAPDrr;
} else if (RC == &X86::VR128RegClass) {
Opc = X86::MOVAPDrr;
Opc = X86::MOVAPSrr;
} else {
assert(0 && "Unknown regclass");
abort();