mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 06:29:59 +00:00
Use a COPY node instead of an explicit MOVA opcode in the custom insterter for pcmpestrm/pcmpistrm. Allows the register allocator to handle it better and prevent wasted identity moves.
llvm-svn: 161305
This commit is contained in:
parent
aadd19de06
commit
c716a3f554
@ -11867,8 +11867,7 @@ X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
|
||||
MIB.addOperand(Op);
|
||||
}
|
||||
BuildMI(*BB, MI, dl,
|
||||
TII->get(Subtarget->hasAVX() ? X86::VMOVAPSrr : X86::MOVAPSrr),
|
||||
MI->getOperand(0).getReg())
|
||||
TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
|
||||
.addReg(X86::XMM0);
|
||||
|
||||
MI->eraseFromParent();
|
||||
|
Loading…
Reference in New Issue
Block a user