diff options
author | Eric Christopher <echristo@apple.com> | 2010-05-03 22:18:49 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-05-03 22:18:49 +0000 |
commit | 1e679cbfffe326b813cc66c969560ff8868d5cf2 (patch) | |
tree | 6bc1423c214e2d934ff256a2add069570bca4e4c | |
parent | 1d2ded75e2061011ba1383869c059fa31d152cf4 (diff) | |
download | bcm5719-llvm-1e679cbfffe326b813cc66c969560ff8868d5cf2.tar.gz bcm5719-llvm-1e679cbfffe326b813cc66c969560ff8868d5cf2.zip |
Reword a comment slightly.
llvm-svn: 102966
-rw-r--r-- | llvm/lib/CodeGen/PrologEpilogInserter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/PrologEpilogInserter.cpp b/llvm/lib/CodeGen/PrologEpilogInserter.cpp index 16bf6ea765f..a454b627afd 100644 --- a/llvm/lib/CodeGen/PrologEpilogInserter.cpp +++ b/llvm/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); |