summaryrefslogtreecommitdiff
path: root/utils/TableGen/Record.h
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-04-15 15:30:15 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-04-15 15:30:15 +0000
commit234b3ec8795e0661af56aa1d1a978a41d80686c5 (patch)
treed56bacedad35d53f72fe2f6c1b94fb11c187ac11 /utils/TableGen/Record.h
parent70c583663176a19952a382bd06445272bc0e95dd (diff)
downloadllvm-234b3ec8795e0661af56aa1d1a978a41d80686c5.tar.gz
llvm-234b3ec8795e0661af56aa1d1a978a41d80686c5.tar.bz2
llvm-234b3ec8795e0661af56aa1d1a978a41d80686c5.tar.xz
The "best" of both worlds: readable C++ comments and valid HTML For doxygen.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12964 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/Record.h')
-rw-r--r--utils/TableGen/Record.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h
index d8a96495e7..95c50aea7f 100644
--- a/utils/TableGen/Record.h
+++ b/utils/TableGen/Record.h
@@ -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 {