summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-05-03 22:18:49 +0000
committerEric Christopher <echristo@apple.com>2010-05-03 22:18:49 +0000
commitb4c14aaa50b58ac723d0ed179695e1cd7296572a (patch)
tree3b1ddd1989217332837042716c63e0152fbfbcf3
parentdeff621abdd48bd70434bd4d7ef30f08ddba1cd8 (diff)
downloadllvm-b4c14aaa50b58ac723d0ed179695e1cd7296572a.tar.gz
llvm-b4c14aaa50b58ac723d0ed179695e1cd7296572a.tar.bz2
llvm-b4c14aaa50b58ac723d0ed179695e1cd7296572a.tar.xz
Reword a comment slightly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102966 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/PrologEpilogInserter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/PrologEpilogInserter.cpp b/lib/CodeGen/PrologEpilogInserter.cpp
index 16bf6ea765..a454b627af 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);