[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineFrameInfo.h
Chris Lattner
sabre at nondot.org
Tue Apr 24 21:29:24 PDT 2007
Changes in directory llvm/include/llvm/CodeGen:
MachineFrameInfo.h updated: 1.25 -> 1.26
---
Log message:
support for >4G frames
---
Diffs of the changes: (+2 -2)
MachineFrameInfo.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/CodeGen/MachineFrameInfo.h
diff -u llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.25 llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.26
--- llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.25 Tue Apr 24 23:20:23 2007
+++ llvm/include/llvm/CodeGen/MachineFrameInfo.h Tue Apr 24 23:29:06 2007
@@ -215,11 +215,11 @@
/// 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.
///
More information about the llvm-commits
mailing list