Remove allocation of unused stack slot.

llvm-svn: 57987
This commit is contained in:
Dale Johannesen 2008-10-22 17:26:06 +00:00
parent e9de15b88a
commit f6655a9e79
1 changed files with 0 additions and 6 deletions

View File

@ -4731,12 +4731,6 @@ SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
}
*/
// Get a XMM-vector-sized stack slot.
unsigned Size = 128/8;
MachineFunction &MF = DAG.getMachineFunction();
int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
// Build some magic constants.
std::vector<Constant*>CV0;
CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));