mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-28 07:18:30 +00:00
Restore missing cosmopolitan documentation on website
This commit is contained in:
parent
58352df0a4
commit
d9d5f45e2d
36 changed files with 715 additions and 228 deletions
|
@ -95,7 +95,7 @@ void *memmove(void *dst, const void *src, size_t n) {
|
|||
d = dst;
|
||||
s = src;
|
||||
|
||||
#ifdef __x86__
|
||||
#if defined(__x86_64__) && !defined(__chibicc__)
|
||||
if (IsTiny()) {
|
||||
uint16_t w1, w2;
|
||||
uint32_t l1, l2;
|
||||
|
@ -214,7 +214,7 @@ void *memmove(void *dst, const void *src, size_t n) {
|
|||
default:
|
||||
if (d == s) return d;
|
||||
|
||||
#ifdef __x86__
|
||||
#if defined(__x86_64__) && !defined(__chibicc__)
|
||||
if (n < kHalfCache3 || !kHalfCache3) {
|
||||
if (d > s) {
|
||||
if (IsAsan() || n < 900 || !X86_HAVE(ERMS)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue