| Auto-Submit | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM
Since we have absl now, we can use it for int128 stuff on plaforms thatPlease fix this WARNING reported by Spellchecker: "plaforms" is a possible misspelling of "platforms".
To bypass Spellchecker, ad...
"plaforms" is a possible misspelling of "platforms".
To bypass Spellchecker, add a footer with DISABLE_SPELLCHECKER
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
Since we have absl now, we can use it for int128 stuff on plaforms thatPlease fix this WARNING reported by Spellchecker: "plaforms" is a possible misspelling of "platforms".
To bypass Spellchecker, ad...
"plaforms" is a possible misspelling of "platforms".
To bypass Spellchecker, add a footer with DISABLE_SPELLCHECKER
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
1 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: src/base/numbers/diy-fp.h
Insertions: 1, Deletions: 1.
@@ -51,7 +51,7 @@
// returns a * b;
static DiyFp Times(const DiyFp& a, const DiyFp& b) {
- absl::int128 mul = a.f_ * absl::int128(b.f_);
+ absl::uint128 mul = a.f_ * absl::uint128(b.f_);
uint64_t hi = absl::Uint128High64(mul);
uint64_t lo = absl::Uint128Low64(mul);
return {hi + (lo >> 63), a.e_ + b.e_ + 64};
```
[base] Use absl::int128 in DiyFp and FixedDtoa
Since we have absl now, we can use it for int128 stuff on platforms that
don't support __int128, rather than our own manual int64-pair impls.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |