From: Eric Christopher Date: Mon, 3 May 2010 22:18:49 +0000 (+0000) Subject: Reword a comment slightly. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b4c14aaa50b58ac723d0ed179695e1cd7296572a;p=oota-llvm.git Reword a comment slightly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102966 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/PrologEpilogInserter.cpp b/lib/CodeGen/PrologEpilogInserter.cpp index 16bf6ea765f..a454b627afd 100644 --- a/lib/CodeGen/PrologEpilogInserter.cpp +++ b/lib/CodeGen/PrologEpilogInserter.cpp @@ -510,7 +510,7 @@ void PEI::calculateFrameObjectOffsets(MachineFunction &Fn) { // callee saved registers. if (StackGrowsDown) { for (unsigned i = MinCSFrameIndex; i <= MaxCSFrameIndex; ++i) { - // If stack grows down, we need to add size of find the lowest + // If the stack grows down, we need to add the size to find the lowest // address of the object. Offset += MFI->getObjectSize(i);