From: Chris Lattner Date: Tue, 28 Oct 2008 05:31:31 +0000 (+0000) Subject: comment cleanups. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b2ccf8f6076de77192d64790315935db194a7ae6;p=oota-llvm.git comment cleanups. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58315 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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!");