llvm::readWideAPInt

Decode a wide APInt from a sequence of 64-bit words.

Synopsis

Declared in <llvm/Bitcode/BitcodeReader.h>

APInt
readWideAPInt(
    ArrayRef<uint64_t> Vals,
    unsigned int TypeBits);

Return Value

An APInt with width TypeBits built from Vals.

Parameters

NameDescription
ValsLittle-endian limbs of the integer value.
TypeBitsBit width of the resulting APInt.