From: Dan Gohman Date: Wed, 16 Jul 2008 15:57:10 +0000 (+0000) Subject: Fix a comment to say nonnegative instead of positive. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c0d6012b31afa2220306afa27db1b02e18427776;p=oota-llvm.git 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 --- diff --git a/lib/CodeGen/PrologEpilogInserter.cpp b/lib/CodeGen/PrologEpilogInserter.cpp index 95b6078335b..be8a54e03d1 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;