Home
last modified time | relevance | path

Searched refs:IsLiteral (Results 1 – 2 of 2) sorted by relevance

/external/llvm/include/llvm/Bitcode/
DBitCodes.h86 bool IsLiteral : 1; // Indicate whether this is a literal value or not. variable
97 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {} in BitCodeAbbrevOp()
99 : Val(Data), IsLiteral(false), Enc(E) {} in Val()
101 bool isLiteral() const { return IsLiteral; } in isLiteral()
102 bool isEncoding() const { return !IsLiteral; } in isEncoding()
DBitstreamReader.h560 bool IsLiteral = Read(1) ? true : false; in ReadAbbrevRecord() local
561 if (IsLiteral) { in ReadAbbrevRecord()