| 106 | } |
| 107 | |
| 108 | APInt::APInt(unsigned numBits, ArrayRef<uint64_t> bigVal) |
| 109 | : BitWidth(numBits) { |
| 110 | initFromArray(bigVal); |
| 111 | } |
| 112 | |
| 113 | APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) |
| 114 | : BitWidth(numBits) { |
nothing calls this directly
no test coverage detected