[llvm-commits] [llvm] r53681 - /llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp

Dan Gohman gohman at apple.com
Wed Jul 16 08:57:10 PDT 2008


Author: djg
Date: Wed Jul 16 10:57:10 2008
New Revision: 53681

URL: http://llvm.org/viewvc/llvm-project?rev=53681&view=rev
Log:
Fix a comment to say nonnegative instead of positive.

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=53681&r1=53680&r2=53681&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp (original)
+++ llvm/trunk/lib/CodeGen/PrologEpilogInserter.cpp Wed Jul 16 10:57:10 2008
@@ -317,7 +317,7 @@
 
   // 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;





More information about the llvm-commits mailing list