The "best" of both worlds: readable C++ comments and valid HTML For doxygen.
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 15 Apr 2004 15:30:15 +0000 (15:30 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 15 Apr 2004 15:30:15 +0000 (15:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12964 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/Record.h

index d8a96495e76bb06b1ca721cd0d9210f8cda465f8..95c50aea7feb1acd446498b81985d1667097aba5 100644 (file)
@@ -125,7 +125,8 @@ struct BitRecTy : public RecTy {
 };
 
 
-/// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
+// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
+/// BitsRecTy - 'bits&lt;n&gt;' - Represent a fixed number of bits
 ///
 class BitsRecTy : public RecTy {
   unsigned Size;
@@ -188,8 +189,10 @@ struct StringRecTy : public RecTy {
   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&lt;Ty&gt;' - Represent a list of values, all of which must
+/// be of the specified type.
 ///
 class ListRecTy : public RecTy {
   RecTy *Ty;
@@ -244,7 +247,7 @@ struct DagRecTy : public RecTy {
 };
 
 
-/// 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 {