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 | a401b1e1c5eb9563617db8a2477b4c5f8b239521 (patch) | |
tree | b8b9fcfc3d3c1ac59e53ddebf79360601fff9890 /lib/CodeGen/MachineFunction.cpp | |
parent | ab0e4d38f0301089127f7c643ee19207cd7ce388 (diff) |
support > 4G stack objects
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36422 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | lib/CodeGen/MachineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index 5ae73ca40a..4453be80c1 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/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; |