Changes in directory llvm/lib/CodeGen:
PrologEpilogInserter.cpp updated: 1.80 -> 1.81 --- Log message: support for >4G stack frames --- Diffs of the changes: (+1 -1) PrologEpilogInserter.cpp | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/CodeGen/PrologEpilogInserter.cpp diff -u llvm/lib/CodeGen/PrologEpilogInserter.cpp:1.80 llvm/lib/CodeGen/PrologEpilogInserter.cpp:1.81 --- llvm/lib/CodeGen/PrologEpilogInserter.cpp:1.80 Tue Apr 24 23:20:54 2007 +++ llvm/lib/CodeGen/PrologEpilogInserter.cpp Tue Apr 24 23:28:40 2007 @@ -455,7 +455,7 @@ Offset += FFI->getMaxCallFrameSize(); unsigned AlignMask = TFI.getStackAlignment() - 1; - Offset = (Offset + AlignMask) & ~AlignMask; + Offset = (Offset + AlignMask) & ~uint64_t(AlignMask); } // Update frame info to pretend that this is part of the stack... _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits