diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-08-23 21:29:29 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-08-23 21:29:29 +0000 |
commit | 5e2475598e0dd73c0ed3c8e065cf0669277c3cab (patch) | |
tree | 7f13af255835860378ca43500b4f87cc8b790937 /lib/CodeGen/PrologEpilogInserter.cpp | |
parent | 36c6dc22bcaed92f03f7019a0d1cd47ea69e12da (diff) |
Remove the MFI storage of the local allocation block size. It's not needed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111847 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PrologEpilogInserter.cpp')
-rw-r--r-- | lib/CodeGen/PrologEpilogInserter.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/PrologEpilogInserter.cpp b/lib/CodeGen/PrologEpilogInserter.cpp index b600790d85..e360f2c461 100644 --- a/lib/CodeGen/PrologEpilogInserter.cpp +++ b/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. |