support for >4G frames

llvm-svn: 36424
This commit is contained in:
Chris Lattner 2007-04-25 04:29:06 +00:00
parent 1ef35a2721
commit 868d969081
1 changed files with 2 additions and 2 deletions

View File

@ -215,11 +215,11 @@ public:
/// all of the fixed size frame objects. This is only valid after
/// Prolog/Epilog code insertion has finalized the stack frame layout.
///
unsigned getStackSize() const { return StackSize; }
uint64_t getStackSize() const { return StackSize; }
/// setStackSize - Set the size of the stack...
///
void setStackSize(unsigned Size) { StackSize = Size; }
void setStackSize(uint64_t Size) { StackSize = Size; }
/// getOffsetAdjustment - Return the correction for frame offsets.
///