Decode a wide APInt from a sequence of 64-bit words.
Declared in <llvm/Bitcode/BitcodeReader.h>
APInt
readWideAPInt(
ArrayRef<uint64_t> Vals,
unsigned int TypeBits);
An APInt with width TypeBits built from Vals.
| Name | Description |
|---|---|
| Vals | Little-endian limbs of the integer value. |
| TypeBits | Bit width of the resulting APInt. |