[llvm-commits] [llvm] r55094 - /llvm/trunk/include/llvm/CodeGen/FastISel.h

Dan Gohman gohman at apple.com
Wed Aug 20 17:19:43 PDT 2008


Author: djg
Date: Wed Aug 20 19:19:43 2008
New Revision: 55094

URL: http://llvm.org/viewvc/llvm-project?rev=55094&view=rev
Log:
Improve the doxygen comment for SelectInstructions::SelectInstructions.

Modified:
    llvm/trunk/include/llvm/CodeGen/FastISel.h

Modified: llvm/trunk/include/llvm/CodeGen/FastISel.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/FastISel.h?rev=55094&r1=55093&r2=55094&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/FastISel.h (original)
+++ llvm/trunk/include/llvm/CodeGen/FastISel.h Wed Aug 20 19:19:43 2008
@@ -44,11 +44,12 @@
   /// 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();
 





More information about the llvm-commits mailing list