From: Jim Grosbach Date: Fri, 13 Aug 2010 20:32:35 +0000 (+0000) Subject: tidy up comments X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=73bb0186a5b5fdda5d69950fd474e886103289f5;p=oota-llvm.git tidy up comments git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111040 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h index c657ba50784..374d6e565d4 100644 --- a/include/llvm/CodeGen/MachineFrameInfo.h +++ b/include/llvm/CodeGen/MachineFrameInfo.h @@ -245,10 +245,10 @@ public: /// int getObjectIndexEnd() const { return (int)Objects.size()-NumFixedObjects; } - /// getNumFixedObjects() - Return the number of fixed objects. + /// getNumFixedObjects - Return the number of fixed objects. unsigned getNumFixedObjects() const { return NumFixedObjects; } - /// getNumObjects() - Return the number of objects. + /// getNumObjects - Return the number of objects. /// unsigned getNumObjects() const { return Objects.size(); }