From b2d576facf0372d8c4a59e1796fed5ea8a5eed8f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 28 Oct 2008 05:31:31 +0000 Subject: [PATCH] comment cleanups. llvm-svn: 58315 --- include/llvm/CodeGen/MachineFrameInfo.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h index 363f2063483..e5eed90c45f 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!");