summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineFrameInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-04-25 04:29:06 +0000
committerChris Lattner <sabre@nondot.org>2007-04-25 04:29:06 +0000
commite47b1446d8f072107c45168aa77fd9c6e0327c32 (patch)
tree20d17c822f2ad58fddd714a8019d6943ab70c09e /include/llvm/CodeGen/MachineFrameInfo.h
parent618078016d41becbd3af439fdeb2d65305170657 (diff)
downloadllvm-e47b1446d8f072107c45168aa77fd9c6e0327c32.tar.gz
llvm-e47b1446d8f072107c45168aa77fd9c6e0327c32.tar.bz2
llvm-e47b1446d8f072107c45168aa77fd9c6e0327c32.tar.xz
support for >4G frames
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36424 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFrameInfo.h')
-rw-r--r--include/llvm/CodeGen/MachineFrameInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h
index 76b9d9b7e3..a4c9620a04 100644
--- a/include/llvm/CodeGen/MachineFrameInfo.h
+++ b/include/llvm/CodeGen/MachineFrameInfo.h
@@ -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.
///