diff options
author | Chris Lattner <sabre@nondot.org> | 2005-11-06 17:40:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-11-06 17:40:18 +0000 |
commit | cb982916f7795c0ad4f6e1a2d5c504c236a80f15 (patch) | |
tree | 6dced1a9a1c8c7ebc60bf2c3c946c96396dd9460 | |
parent | 00873ebc1fc3c2da16efa0b32ecf25203b47dae4 (diff) | |
download | external_llvm-cb982916f7795c0ad4f6e1a2d5c504c236a80f15.zip external_llvm-cb982916f7795c0ad4f6e1a2d5c504c236a80f15.tar.gz external_llvm-cb982916f7795c0ad4f6e1a2d5c504c236a80f15.tar.bz2 |
Change a comment slightly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24226 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/MachineFrameInfo.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h index 6720758..32ec2dd 100644 --- a/include/llvm/CodeGen/MachineFrameInfo.h +++ b/include/llvm/CodeGen/MachineFrameInfo.h @@ -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; |