[llvm-commits] [llvm] r58316 - /llvm/trunk/include/llvm/CodeGen/MachineFrameInfo.h
Chris Lattner
sabre at nondot.org
Mon Oct 27 22:32:08 PDT 2008
Author: lattner
Date: Tue Oct 28 00:32:08 2008
New Revision: 58316
URL: http://llvm.org/viewvc/llvm-project?rev=58316&view=rev
Log:
more comment cleanups.
Modified:
llvm/trunk/include/llvm/CodeGen/MachineFrameInfo.h
Modified: llvm/trunk/include/llvm/CodeGen/MachineFrameInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/MachineFrameInfo.h?rev=58316&r1=58315&r2=58316&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/MachineFrameInfo.h (original)
+++ llvm/trunk/include/llvm/CodeGen/MachineFrameInfo.h Tue Oct 28 00:32:08 2008
@@ -201,11 +201,11 @@
bool isFrameAddressTaken() const { return FrameAddressTaken; }
void setFrameAddressIsTaken(bool T) { FrameAddressTaken = T; }
- /// getObjectIndexBegin - Return the minimum frame object index...
+ /// getObjectIndexBegin - Return the minimum frame object index.
///
int getObjectIndexBegin() const { return -NumFixedObjects; }
- /// getObjectIndexEnd - Return one past the maximum frame object index...
+ /// getObjectIndexEnd - Return one past the maximum frame object index.
///
int getObjectIndexEnd() const { return (int)Objects.size()-NumFixedObjects; }
@@ -216,7 +216,7 @@
///
unsigned getNumObjects() const { return Objects.size(); }
- /// getObjectSize - Return the size of the specified object
+ /// getObjectSize - Return the size of the specified object.
///
int64_t getObjectSize(int ObjectIdx) const {
assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
More information about the llvm-commits
mailing list