From 6c92690914094ca6e784ff8d0cd8ee1cfc87d5ed Mon Sep 17 00:00:00 2001 From: Haneef Mubarak Date: Tue, 26 May 2020 16:08:33 -0700 Subject: [PATCH] fix REP MOVSB doc comment typo --- include/mimalloc-internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mimalloc-internal.h b/include/mimalloc-internal.h index b191d03d..43f72a11 100644 --- a/include/mimalloc-internal.h +++ b/include/mimalloc-internal.h @@ -175,8 +175,8 @@ bool _mi_page_is_valid(mi_page_t* page); #endif // ------------------------------------------------------ -// Fast `memcpy()` on x86(_64) platforms unavailable, -// use REP MOVSB +// Fast `memcpy()` on x86(_64) platforms unavailable +// on Windows, use REP MOVSB if necessary // ------------------------------------------------------ #if defined(_M_IX86) || defined(_M_X64)