Searched refs:IsLiteral (Results 1 – 2 of 2) sorted by relevance
86 bool IsLiteral : 1; // Indicate whether this is a literal value or not. variable97 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()
560 bool IsLiteral = Read(1) ? true : false; in ReadAbbrevRecord() local561 if (IsLiteral) { in ReadAbbrevRecord()