forked from OSchip/llvm-project
The "best" of both worlds: readable C++ comments and valid HTML For doxygen.
llvm-svn: 12964
This commit is contained in:
parent
cd19073a70
commit
b4f20ea496
|
@ -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 {
|
class BitsRecTy : public RecTy {
|
||||||
unsigned Size;
|
unsigned Size;
|
||||||
|
@ -188,8 +189,10 @@ struct StringRecTy : public RecTy {
|
||||||
virtual bool baseClassOf(const StringRecTy *RHS) const { return true; }
|
virtual bool baseClassOf(const StringRecTy *RHS) const { return true; }
|
||||||
};
|
};
|
||||||
|
|
||||||
/// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
|
// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
|
||||||
/// the specified type.
|
// the specified type.
|
||||||
|
/// ListRecTy - 'list<Ty>' - Represent a list of values, all of which must
|
||||||
|
/// be of the specified type.
|
||||||
///
|
///
|
||||||
class ListRecTy : public RecTy {
|
class ListRecTy : public RecTy {
|
||||||
RecTy *Ty;
|
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).
|
/// (R32 X = EAX).
|
||||||
///
|
///
|
||||||
class RecordRecTy : public RecTy {
|
class RecordRecTy : public RecTy {
|
||||||
|
|
Loading…
Reference in New Issue