aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/PrologEpilogInserter.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-08-23 21:29:29 +0000
committerJim Grosbach <grosbach@apple.com>2010-08-23 21:29:29 +0000
commit616bc356e9965e1f13b86bf4743f324718da6590 (patch)
tree53b5ec316ba773b3d81c4292259b27598271038f /llvm/lib/CodeGen/PrologEpilogInserter.cpp
parentc4809c930a15c5a80e6a849e7d9e26430d80724e (diff)
downloadllvm-616bc356e9965e1f13b86bf4743f324718da6590.zip
llvm-616bc356e9965e1f13b86bf4743f324718da6590.tar.gz
llvm-616bc356e9965e1f13b86bf4743f324718da6590.tar.bz2
Remove the MFI storage of the local allocation block size. It's not needed.
llvm-svn: 111847
Diffstat (limited to 'llvm/lib/CodeGen/PrologEpilogInserter.cpp')
-rw-r--r--llvm/lib/CodeGen/PrologEpilogInserter.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/PrologEpilogInserter.cpp b/llvm/lib/CodeGen/PrologEpilogInserter.cpp
index b600790..e360f2c 100644
--- a/llvm/lib/CodeGen/PrologEpilogInserter.cpp
+++ b/llvm/lib/CodeGen/PrologEpilogInserter.cpp
@@ -566,10 +566,6 @@ void PEI::calculateFrameObjectOffsets(MachineFunction &Fn) {
// Adjust to alignment boundary.
Offset = (Offset + Align - 1) / Align * Align;
- // Store the offset of the start of the local allocation block. This
- // will be used later when resolving frame base virtual register pseudos.
- MFI->setLocalFrameBaseOffset(Offset);
-
DEBUG(dbgs() << "Local frame base offset: " << Offset << "\n");
// Resolve offsets for objects in the local block.