@@ -1204,8 +1204,9 @@ fileprivate func _Float80ToASCII(
1204
1204
// ================================================================
1205
1205
1206
1206
#if false
1207
- // Note: We don't need _float128ToStringImpl, since that's only for backwards compatibility,
1208
- // and the legacy ABI never supported Float128.
1207
+ // Note: We don't need _float128ToStringImpl, since that's only for
1208
+ // backwards compatibility, and the legacy ABI never supported
1209
+ // Float128.
1209
1210
1210
1211
internal func Float128ToASCII(
1211
1212
value d: Float128 ,
@@ -1331,13 +1332,12 @@ fileprivate func _backend_256bit(
1331
1332
as: UInt8 . self)
1332
1333
nextDigit &+= 1
1333
1334
1334
- // It would be nice to generate 8 digits at a time
1335
- // and take advantage of intToEightDigits, but
1336
- // our integer portion has only 14 bits. We can't make
1337
- // that bigger without either sacrificing too much
1338
- // precision for correct Float128 or folding the first
1339
- // digits into the scaling (as we do with Double) which
1340
- // would require a back-out phase here.
1335
+ // It would be nice to generate 8 digits at a time and take
1336
+ // advantage of intToEightDigits, but our integer portion has only
1337
+ // 14 bits. We can't make that bigger without either sacrificing
1338
+ // too much precision for correct Float128 or folding the first
1339
+ // digits into the scaling (as we do with Double) which would
1340
+ // require a back-out phase here (as we do with Double).
1341
1341
1342
1342
// If there is at least one more digit possible...
1343
1343
if delta < t {
0 commit comments