| 2295 | #endif |
| 2296 | |
| 2297 | void APInt::print(raw_ostream &OS, bool isSigned) const { |
| 2298 | SmallString<40> S; |
| 2299 | this->toString(S, 10, isSigned, /* formatAsCLiteral = */false); |
| 2300 | OS << S; |
| 2301 | } |
| 2302 | |
| 2303 | // This implements a variety of operations on a representation of |
| 2304 | // arbitrary precision, two's-complement, bignum integer values. |