Change a comment slightly
authorChris Lattner <sabre@nondot.org>
Sun, 6 Nov 2005 17:40:18 +0000 (17:40 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 6 Nov 2005 17:40:18 +0000 (17:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24226 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineFrameInfo.h

index 6720758e646b527495c9c0685588ab9f04ce3d4a..32ec2ddaf939082f4e8eaeeb21f4afa441099258 100644 (file)
@@ -88,8 +88,10 @@ class MachineFrameInfo {
   
   /// MaxAlignment - The prolog/epilog code inserter may process objects 
   /// that require greater alignment than the default alignment the target
-  /// provides. In these cases, MaxAlignment is set to the new alignment 
-  /// necessary to easily calculate fixed offsets for each stack object.
+  /// provides. To handle this, MaxAlignment is set to the maximum alignment 
+  /// needed by the objects on the current frame.  If this is greater than the
+  /// native alignment maintained by the compiler, dynamic alignment code will
+  /// be needed.
   ///
   unsigned MaxAlignment;