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

/external/llvm/include/llvm/Bitcode/
H A DBitCodes.h82 /// BitCodeAbbrevOp - This describes one or more operands in an abbreviation.
87 class BitCodeAbbrevOp { class in namespace:llvm
100 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {} function in class:llvm::BitCodeAbbrevOp
101 explicit BitCodeAbbrevOp(Encoding E, uint64_t Data = 0) function in class:llvm::BitCodeAbbrevOp
160 template <> struct isPodLike<BitCodeAbbrevOp> { static const bool value=true; };
166 SmallVector<BitCodeAbbrevOp, 32> OperandList;
175 const BitCodeAbbrevOp &getOperandInfo(unsigned N) const {
179 void Add(const BitCodeAbbrevOp &OpInfo) {

Completed in 76 milliseconds