aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-10-22 17:26:06 +0000
committerDale Johannesen <dalej@apple.com>2008-10-22 17:26:06 +0000
commite80d67ec11cff70700a13b54a4c057afd58ed33c (patch)
treed38929d5756d09ccb2f76e04f383ef0b93e9fbe6
parente7d3af54737b7787c92ea03588dd4301b29d0899 (diff)
Remove allocation of unused stack slot.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57987 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86ISelLowering.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp
index 6007f9d1ad..c0831a734a 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::vector<Constant*>CV0;
CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));