From: Bob Wilson Date: Wed, 23 Sep 2009 18:53:19 +0000 (+0000) Subject: Edit a comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=94188d4e67cf1c570ad87dbabf198931033d628e;p=oota-llvm.git Edit a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82641 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/PrologEpilogInserter.cpp b/lib/CodeGen/PrologEpilogInserter.cpp index e20cac26aca..226e1ba2833 100644 --- a/lib/CodeGen/PrologEpilogInserter.cpp +++ b/lib/CodeGen/PrologEpilogInserter.cpp @@ -433,8 +433,7 @@ static inline void 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);