GP-2438 Turning on return value storage

This commit is contained in:
caheckman 2022-08-18 17:57:51 -04:00
parent 62c0e444a5
commit e98ddcc3b1
15 changed files with 342 additions and 227 deletions

View file

@ -857,6 +857,11 @@ AddrSpace *PackedDecode::readSpace(const AttributeId &attribId)
return res;
}
/// The value is either an unsigned integer, an address space index, or (the absolute value of) a signed integer.
/// A type header is passed in with the particular type code for the value already filled in.
/// This method then fills in the length code, outputs the full type header and the encoded bytes of the integer.
/// \param typeByte is the type header
/// \param val is the integer value
void PackedEncode::writeInteger(uint1 typeByte,uint8 val)
{