Fix a comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13518 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke 2004-05-12 21:57:23 +00:00
parent bee887211b
commit da86bdc75c

View File

@ -161,8 +161,10 @@ public:
void dump() const;
void print(std::ostream &OS) const;
// MachineBasicBlocks are uniquely numbered at the function level
// (unless they're not in a MachineFunction yet)
/// getNumber - MachineBasicBlocks are uniquely numbered at the function
/// level, unless they're not in a MachineFunction yet, in which case this
/// will return -1.
///
int getNumber() const { return Number; }
private: // Methods used to maintain doubly linked list of blocks...