diff options
Diffstat (limited to 'newlib/libc/string/memmove.c')
-rw-r--r-- | newlib/libc/string/memmove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/string/memmove.c b/newlib/libc/string/memmove.c index a82744c..4c5ec6f 100644 --- a/newlib/libc/string/memmove.c +++ b/newlib/libc/string/memmove.c @@ -85,7 +85,7 @@ memmove (void *dst_void, /* Use optimizing algorithm for a non-destructive copy to closely match memcpy. If the size is small or either SRC or DST is unaligned, then punt into the byte copy loop. This should be rare. */ - if (!TOO_SMALL_BIG_BLOCK(length) && !UNALIGNED_X_Y(src, dst)) + if (!TOO_SMALL_LITTLE_BLOCK(length) && !UNALIGNED_X_Y(src, dst)) { aligned_dst = (long*)dst; aligned_src = (long*)src; |