| 3604 | |
| 3605 | namespace { |
| 3606 | void append(SmallVectorImpl<char> &Buffer, StringRef Str) { |
| 3607 | Buffer.append(Str.begin(), Str.end()); |
| 3608 | } |
| 3609 | |
| 3610 | /// Removes data from the given significand until it is no more |
| 3611 | /// precise than is required for the desired precision. |