[llvm-commits] CVS: llvm/utils/TableGen/Record.h

Misha Brukman brukman at cs.uiuc.edu
Thu Apr 15 10:31:02 PDT 2004


Changes in directory llvm/utils/TableGen:

Record.h updated: 1.38 -> 1.39

---
Log message:

The "best" of both worlds: readable C++ comments and valid HTML For doxygen.


---
Diffs of the changes:  (+7 -4)

Index: llvm/utils/TableGen/Record.h
diff -u llvm/utils/TableGen/Record.h:1.38 llvm/utils/TableGen/Record.h:1.39
--- llvm/utils/TableGen/Record.h:1.38	Tue Nov 11 16:41:34 2003
+++ llvm/utils/TableGen/Record.h	Thu Apr 15 10:30:15 2004
@@ -125,7 +125,8 @@
 };
 
 
-/// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
+// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
+/// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
 ///
 class BitsRecTy : public RecTy {
   unsigned Size;
@@ -188,8 +189,10 @@
   virtual bool baseClassOf(const StringRecTy *RHS) const { return true; }
 };
 
-/// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
-/// the specified type.
+// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
+// the specified type.
+/// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must
+/// be of the specified type.
 ///
 class ListRecTy : public RecTy {
   RecTy *Ty;
@@ -244,7 +247,7 @@
 };
 
 
-/// RecordRecTy - '<classname>' - Represent an instance of a class, such as:
+/// RecordRecTy - '[classname]' - Represent an instance of a class, such as:
 /// (R32 X = EAX).
 ///
 class RecordRecTy : public RecTy {





More information about the llvm-commits mailing list