Searched defs:BitsRecTy (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/TableGen/
H A DRecord.h33 class BitsRecTy;
177 /// BitsRecTy - 'bits<n>' - Represent a fixed number of bits
179 class BitsRecTy : public RecTy { class in namespace:llvm
181 explicit BitsRecTy(unsigned Sz) : RecTy(BitsRecTyKind), Size(Sz) {} function in class:llvm::BitsRecTy
188 static BitsRecTy *get(unsigned Sz);
651 /// BitsInit - { a, b, c } - Represents an initializer for a BitsRecTy value.
1100 (isa<BitsRecTy>(T->getType()) &&
1101 cast<BitsRecTy>(T->getType())->getNumBits() > B)) &&

Completed in 33 milliseconds