[llvm-commits] [llvm] r82641 - /llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp
Bob Wilson
bob.wilson at apple.com
Wed Sep 23 11:53:19 PDT 2009
Author: bwilson
Date: Wed Sep 23 13:53:19 2009
New Revision: 82641
URL: http://llvm.org/viewvc/llvm-project?rev=82641&view=rev
Log:
Edit a comment.
Modified:
llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp
Modified: llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp?rev=82641&r1=82640&r2=82641&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp (original)
+++ llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp Wed Sep 23 13:53:19 2009
@@ -433,8 +433,7 @@
AdjustStackOffset(MachineFrameInfo *FFI, int FrameIdx,
bool StackGrowsDown, int64_t &Offset,
unsigned &MaxAlign) {
- // If stack grows down, we need to add size of find the lowest address of the
- // object.
+ // If the stack grows down, add the object size to find the lowest address.
if (StackGrowsDown)
Offset += FFI->getObjectSize(FrameIdx);
More information about the llvm-commits
mailing list