[llvm-commits] [llvm] r102966 - /llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp
Eric Christopher
echristo at apple.com
Mon May 3 15:18:50 PDT 2010
Author: echristo
Date: Mon May 3 17:18:49 2010
New Revision: 102966
URL: http://llvm.org/viewvc/llvm-project?rev=102966&view=rev
Log:
Reword a comment slightly.
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=102966&r1=102965&r2=102966&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp (original)
+++ llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp Mon May 3 17:18:49 2010
@@ -510,7 +510,7 @@
// 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);
More information about the llvm-commits
mailing list