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 /include/llvm/CodeGen/MachineFrameInfo.h | |
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 'include/llvm/CodeGen/MachineFrameInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineFrameInfo.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h index 7d75c2d5c2..44b3aed845 100644 --- a/include/llvm/CodeGen/MachineFrameInfo.h +++ b/include/llvm/CodeGen/MachineFrameInfo.h @@ -207,11 +207,6 @@ class MachineFrameInfo { /// LocalFrameSize - Size of the pre-allocated local frame block. int64_t LocalFrameSize; - /// LocalFrameBaseOffset - The base offset from the stack pointer at - /// function entry of the local frame blob. Set by PEI for use by - /// target in eliminateFrameIndex(). - int64_t LocalFrameBaseOffset; - /// Required alignment of the local object blob, which is the strictest /// alignment of any object in it. unsigned LocalFrameMaxAlign; @@ -233,7 +228,6 @@ public: MaxCallFrameSize = 0; CSIValid = false; LocalFrameSize = 0; - LocalFrameBaseOffset = 0; LocalFrameMaxAlign = 0; UseLocalStackAllocationBlock = false; } @@ -299,14 +293,6 @@ public: /// the local object block. int64_t getLocalFrameObjectCount() { return LocalFrameObjects.size(); } - /// setLocalFrameBaseOffset - Set the base SP offset of the local frame - /// blob. - void setLocalFrameBaseOffset(int64_t o) { LocalFrameBaseOffset = o; } - - /// getLocalFrameBaseOffset - Get the base SP offset of the local frame - /// blob. - int64_t getLocalFrameBaseOffset() const { return LocalFrameBaseOffset; } - /// setLocalFrameSize - Set the size of the local object blob. void setLocalFrameSize(int64_t sz) { LocalFrameSize = sz; } |