support for >4G frames
authorChris Lattner <sabre@nondot.org>
Wed, 25 Apr 2007 04:29:06 +0000 (04:29 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 25 Apr 2007 04:29:06 +0000 (04:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36424 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineFrameInfo.h

index 76b9d9b7e3c21b6c89da5545b0434e53ae5d397d..a4c9620a04c58a4c488e64e12e1ca5112a7fbc24 100644 (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.
   ///