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

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

Completed in 176 milliseconds