[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineFunction.h

Misha Brukman brukman at cs.uiuc.edu
Tue Aug 17 10:52:46 PDT 2004



Changes in directory llvm/include/llvm/CodeGen:

MachineFunction.h updated: 1.39 -> 1.40
---
Log message:

Ultra-doxygenify some function header comments.


---
Diffs of the changes:  (+3 -0)

Index: llvm/include/llvm/CodeGen/MachineFunction.h
diff -u llvm/include/llvm/CodeGen/MachineFunction.h:1.39 llvm/include/llvm/CodeGen/MachineFunction.h:1.40
--- llvm/include/llvm/CodeGen/MachineFunction.h:1.39	Mon Aug 16 17:35:26 2004
+++ llvm/include/llvm/CodeGen/MachineFunction.h	Tue Aug 17 12:52:36 2004
@@ -48,6 +48,7 @@
   static void setNext(MachineBasicBlock* N, MachineBasicBlock* next) {
     N->Next = next;
   }
+
   static MachineBasicBlock* createNode();
   void addNodeToList(MachineBasicBlock* N);
   void removeNodeFromList(MachineBasicBlock* N);
@@ -117,6 +118,7 @@
 
   /// getConstantPool - Return the constant pool object for the current
   /// function.
+  ///
   MachineConstantPool *getConstantPool() const { return ConstantPool; }
 
   /// MachineFunctionInfo - Keep track of various per-function pieces of
@@ -128,6 +130,7 @@
   /// are inserted into the machine function.  The block number for a machine
   /// basic block can be found by using the MBB::getBlockNumber method, this
   /// method provides the inverse mapping.
+  ///
   MachineBasicBlock *getBlockNumbered(unsigned N) {
     assert(N < MBBNumbering.size() && "Illegal block number");
     assert(MBBNumbering[N] && "Block was removed from the machine function!");






More information about the llvm-commits mailing list