diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-25 04:20:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-25 04:20:54 +0000 |
commit | 9bd98ea4c11a5be861eb65dbec09b6d9d7c5275c (patch) | |
tree | ca4cef5736aa719af03c687c34a831fc82144531 /llvm/lib/CodeGen/PrologEpilogInserter.cpp | |
parent | 510fefcd8ab95ecc5de15a59fc753af75cf2a92d (diff) | |
download | bcm5719-llvm-9bd98ea4c11a5be861eb65dbec09b6d9d7c5275c.tar.gz bcm5719-llvm-9bd98ea4c11a5be861eb65dbec09b6d9d7c5275c.zip |
support > 4G stack objects
llvm-svn: 36422
Diffstat (limited to 'llvm/lib/CodeGen/PrologEpilogInserter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/PrologEpilogInserter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/PrologEpilogInserter.cpp b/llvm/lib/CodeGen/PrologEpilogInserter.cpp index b6e909507a4..a79ba2972ea 100644 --- a/llvm/lib/CodeGen/PrologEpilogInserter.cpp +++ b/llvm/lib/CodeGen/PrologEpilogInserter.cpp @@ -305,7 +305,7 @@ void PEI::calculateFrameObjectOffsets(MachineFunction &Fn) { // Start at the beginning of the local area. // The Offset is the distance from the stack top in the direction // of stack growth -- so it's always positive. - int Offset = TFI.getOffsetOfLocalArea(); + int64_t Offset = TFI.getOffsetOfLocalArea(); if (StackGrowsDown) Offset = -Offset; assert(Offset >= 0 @@ -317,7 +317,7 @@ void PEI::calculateFrameObjectOffsets(MachineFunction &Fn) { // so we adjust 'Offset' to point to the end of last fixed sized // preallocated object. for (int i = FFI->getObjectIndexBegin(); i != 0; ++i) { - int FixedOff; + int64_t FixedOff; if (StackGrowsDown) { // The maximum distance from the stack pointer is at lower address of // the object -- which is given by offset. For down growing stack |