diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-04-15 15:30:15 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-04-15 15:30:15 +0000 |
commit | b4f20ea49687bcd3a3640f402f76b019b06555b9 (patch) | |
tree | 35bc3841e0ae0f6c352fa39556ede1b865b3d118 /llvm/utils | |
parent | cd19073a70b79c7f4c8ddf1fc7605a1e6782fedb (diff) | |
download | bcm5719-llvm-b4f20ea49687bcd3a3640f402f76b019b06555b9.tar.gz bcm5719-llvm-b4f20ea49687bcd3a3640f402f76b019b06555b9.zip |
The "best" of both worlds: readable C++ comments and valid HTML For doxygen.
llvm-svn: 12964
Diffstat (limited to 'llvm/utils')
-rw-r--r-- | llvm/utils/TableGen/Record.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/llvm/utils/TableGen/Record.h b/llvm/utils/TableGen/Record.h index d8a96495e76..95c50aea7fe 100644 --- a/llvm/utils/TableGen/Record.h +++ b/llvm/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<n>' - 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<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 @@ 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 { |