1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Improve the doxygen comment for SelectInstructions::SelectInstructions.

llvm-svn: 55094
This commit is contained in:
Dan Gohman 2008-08-21 00:19:43 +00:00
parent 4ab3376173
commit 1af9c028bc

View File

@ -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();