From c146b1b28167186cb903fa989669270221ed2dab Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Wed, 22 Oct 2008 17:26:06 +0000 Subject: [PATCH] Remove allocation of unused stack slot. llvm-svn: 57987 --- lib/Target/X86/X86ISelLowering.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 6007f9d1ad2..c0831a734a9 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -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::vectorCV0; CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));