mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-21 18:10:30 +00:00
Reduce build latency and fix old cpu bugs
This commit is contained in:
parent
df8ab0aa0c
commit
533f3d1ef1
69 changed files with 43069 additions and 43683 deletions
4
third_party/mbedtls/bigshift.c
vendored
4
third_party/mbedtls/bigshift.c
vendored
|
@ -94,6 +94,10 @@ int mbedtls_mpi_shift_l(mbedtls_mpi *X, size_t k)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void ShiftRightPure(mbedtls_mpi_uint *p, size_t n, unsigned char k) {
|
||||
shrd(p, n, 0, n, k);
|
||||
}
|
||||
|
||||
/**
|
||||
* Performs right arithmetic shift on big number: X >>= k
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue