aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-08-21 00:19:43 +0000
committerDan Gohman <gohman@apple.com>2008-08-21 00:19:43 +0000
commit7f92ebddd27c8d099e04cc879cc8199dba88cec1 (patch)
tree5ae216793edbf100d29921b3caaefdc940969c1e /include
parentc7f72de3b4ef21828ea4780f0693bf0acd04e1c5 (diff)
downloadexternal_llvm-7f92ebddd27c8d099e04cc879cc8199dba88cec1.zip
external_llvm-7f92ebddd27c8d099e04cc879cc8199dba88cec1.tar.gz
external_llvm-7f92ebddd27c8d099e04cc879cc8199dba88cec1.tar.bz2
Improve the doxygen comment for SelectInstructions::SelectInstructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55094 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/FastISel.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/FastISel.h b/include/llvm/CodeGen/FastISel.h
index cdca6aa..12ae3a8 100644
--- a/include/llvm/CodeGen/FastISel.h
+++ b/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();