summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEli Bendersky <eliben@google.com>2013-04-22 20:30:50 +0000
committerEli Bendersky <eliben@google.com>2013-04-22 20:30:50 +0000
commit8247c5df9c847841f0bf257483860cdebf496b99 (patch)
treeac01fde926bba9adb9d8ea4c29cc240a0e537ef4 /include
parent6641fa7c6c8873343d94f48a996209ebeb7b5b34 (diff)
downloadllvm-8247c5df9c847841f0bf257483860cdebf496b99.tar.gz
llvm-8247c5df9c847841f0bf257483860cdebf496b99.tar.bz2
llvm-8247c5df9c847841f0bf257483860cdebf496b99.tar.xz
Fix comment that didn't match the method it was above
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180043 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/MachineFunction.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h
index 82c4cd6598..c886e256e0 100644
--- a/include/llvm/CodeGen/MachineFunction.h
+++ b/include/llvm/CodeGen/MachineFunction.h
@@ -352,8 +352,8 @@ public:
// Internal functions used to automatically number MachineBasicBlocks
//
- /// getNextMBBNumber - Returns the next unique number to be assigned
- /// to a MachineBasicBlock in this MachineFunction.
+ /// \brief Adds the MBB to the internal numbering. Returns the unique number
+ /// assigned to the MBB.
///
unsigned addToMBBNumbering(MachineBasicBlock *MBB) {
MBBNumbering.push_back(MBB);