diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-16 15:57:10 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-16 15:57:10 +0000 |
commit | c0d6012b31afa2220306afa27db1b02e18427776 (patch) | |
tree | cb9d4fa9d8f642beb8d73bdbf62a0df51a0fc6c1 /lib/CodeGen/PrologEpilogInserter.cpp | |
parent | c5e1f98fdf44993c2bfe4c1ef633b2358cd718c1 (diff) |
Fix a comment to say nonnegative instead of positive.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53681 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PrologEpilogInserter.cpp')
-rw-r--r-- | lib/CodeGen/PrologEpilogInserter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/PrologEpilogInserter.cpp b/lib/CodeGen/PrologEpilogInserter.cpp index 95b6078335..be8a54e03d 100644 --- a/lib/CodeGen/PrologEpilogInserter.cpp +++ b/lib/CodeGen/PrologEpilogInserter.cpp @@ -317,7 +317,7 @@ void PEI::calculateFrameObjectOffsets(MachineFunction &Fn) { // Start at the beginning of the local area. // The Offset is the distance from the stack top in the direction - // of stack growth -- so it's always positive. + // of stack growth -- so it's always nonnegative. int64_t Offset = TFI.getOffsetOfLocalArea(); if (StackGrowsDown) Offset = -Offset; |