diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-09-23 18:53:19 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-09-23 18:53:19 +0000 |
commit | 94188d4e67cf1c570ad87dbabf198931033d628e (patch) | |
tree | 3e2d3fe45e04cac8f8fdbc9034862a3fb2367a41 /lib/CodeGen/PrologEpilogInserter.cpp | |
parent | 6c6c016b1b9711bc8968b51746d4b867e17905f4 (diff) |
Edit a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82641 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PrologEpilogInserter.cpp')
-rw-r--r-- | lib/CodeGen/PrologEpilogInserter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/PrologEpilogInserter.cpp b/lib/CodeGen/PrologEpilogInserter.cpp index e20cac26ac..226e1ba283 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); |