Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The overflow check mul_overflows_s64(int64_t, int64_t) overflows and …
…triggers UB :-) Remove it The overflow check `mul_overflows_s64(int64_t, int64_t)` overflows. Since this is an signed integer overflow this triggers UB, which in turn means that we cannot trust the check. Luckily mul_overflows_s64(int64_t, int64_t) is unused. Removing it.
- Loading branch information