diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-28 05:31:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-28 05:31:31 +0000 |
commit | b2ccf8f6076de77192d64790315935db194a7ae6 (patch) | |
tree | 20ad6b98e12cf27d22dc8394d22b212ad2be6948 /include/llvm/CodeGen/MachineFrameInfo.h | |
parent | 1f08cc2d2bc0c9369ecb0e3f90cce7c362c3924e (diff) |
comment cleanups.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58315 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFrameInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineFrameInfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h index 363f206348..e5eed90c45 100644 --- a/include/llvm/CodeGen/MachineFrameInfo.h +++ b/include/llvm/CodeGen/MachineFrameInfo.h @@ -224,21 +224,21 @@ public: return Objects[ObjectIdx+NumFixedObjects].Size; } - // setObjectSize - Change the size of the specified stack object... + /// setObjectSize - Change the size of the specified stack object. void setObjectSize(int ObjectIdx, int64_t Size) { assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && "Invalid Object Idx!"); Objects[ObjectIdx+NumFixedObjects].Size = Size; } - /// getObjectAlignment - Return the alignment of the specified stack object... + /// getObjectAlignment - Return the alignment of the specified stack object. unsigned getObjectAlignment(int ObjectIdx) const { assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && "Invalid Object Idx!"); return Objects[ObjectIdx+NumFixedObjects].Alignment; } - /// setObjectAlignment - Change the alignment of the specified stack object... + /// setObjectAlignment - Change the alignment of the specified stack object. void setObjectAlignment(int ObjectIdx, unsigned Align) { assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && "Invalid Object Idx!"); |