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/MachineFunction.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/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index 5ae73ca40a0..4453be80c1c 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -342,7 +342,7 @@ void MachineFrameInfo::print(const MachineFunction &MF, std::ostream &OS) const{ if (i < NumFixedObjects) OS << " fixed"; if (i < NumFixedObjects || SO.SPOffset != -1) { - int Off = SO.SPOffset - ValOffset; + int64_t Off = SO.SPOffset - ValOffset; OS << " at location [SP"; if (Off > 0) OS << "+" << Off; |