diff options
author | Dan Gohman <gohman@apple.com> | 2008-08-21 00:19:43 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-08-21 00:19:43 +0000 |
commit | ce8ed435dc66c1e858882cfa6cf56c7bbfc5f0b3 (patch) | |
tree | 9b1bf7200a63b7a1ee85b9c4c6aee438c09d984e /llvm | |
parent | 7170623b16ff37f8a367068547fdcf044ec90217 (diff) | |
download | bcm5719-llvm-ce8ed435dc66c1e858882cfa6cf56c7bbfc5f0b3.tar.gz bcm5719-llvm-ce8ed435dc66c1e858882cfa6cf56c7bbfc5f0b3.zip |
Improve the doxygen comment for SelectInstructions::SelectInstructions.
llvm-svn: 55094
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/CodeGen/FastISel.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/include/llvm/CodeGen/FastISel.h b/llvm/include/llvm/CodeGen/FastISel.h index cdca6aad9f5..12ae3a80e1b 100644 --- a/llvm/include/llvm/CodeGen/FastISel.h +++ b/llvm/include/llvm/CodeGen/FastISel.h @@ -44,11 +44,12 @@ public: /// LLVM IR instructions in the range [Begin, N) where N is either /// End or the first unsupported instruction. Return N. /// ValueMap is filled in with a mapping of LLVM IR Values to - /// register numbers. + /// virtual register numbers. MBB is a block to which to append + /// the enerated MachineInstrs. BasicBlock::iterator SelectInstructions(BasicBlock::iterator Begin, BasicBlock::iterator End, DenseMap<const Value*, unsigned> &ValueMap, - MachineBasicBlock *mbb); + MachineBasicBlock *MBB); virtual ~FastISel(); |