[llvm-commits] CVS: llvm/lib/CodeGen/MachineFunction.cpp

Chris Lattner sabre at nondot.org
Tue Apr 24 21:20:21 PDT 2007



Changes in directory llvm/lib/CodeGen:

MachineFunction.cpp updated: 1.109 -> 1.110
---
Log message:

support > 4G stack objects


---
Diffs of the changes:  (+1 -1)

 MachineFunction.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/CodeGen/MachineFunction.cpp
diff -u llvm/lib/CodeGen/MachineFunction.cpp:1.109 llvm/lib/CodeGen/MachineFunction.cpp:1.110
--- llvm/lib/CodeGen/MachineFunction.cpp:1.109	Tue Feb 13 23:52:17 2007
+++ llvm/lib/CodeGen/MachineFunction.cpp	Tue Apr 24 23:20:02 2007
@@ -342,7 +342,7 @@
     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;






More information about the llvm-commits mailing list