[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineFrameInfo.h
Chris Lattner
lattner at cs.uiuc.edu
Sun Nov 6 09:40:29 PST 2005
Changes in directory llvm/include/llvm/CodeGen:
MachineFrameInfo.h updated: 1.13 -> 1.14
---
Log message:
Change a comment slightly
---
Diffs of the changes: (+4 -2)
MachineFrameInfo.h | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/CodeGen/MachineFrameInfo.h
diff -u llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.13 llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.14
--- llvm/include/llvm/CodeGen/MachineFrameInfo.h:1.13 Sun Nov 6 03:00:37 2005
+++ llvm/include/llvm/CodeGen/MachineFrameInfo.h Sun Nov 6 11:40:18 2005
@@ -88,8 +88,10 @@
/// 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;
More information about the llvm-commits
mailing list