From: Leonardo Sandoval Date: Tue, 15 May 2018 16:56:03 +0000 (-0500) Subject: x86-64: remove duplicate line on PREFETCH_ONE_SET macro X-Git-Tag: glibc-2.28~269 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4ebc1380d03c64eba9089dc8adef2c0af03a9e1;p=thirdparty%2Fglibc.git x86-64: remove duplicate line on PREFETCH_ONE_SET macro Tested on 64-bit AVX machine * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S (PREFETCH_ONE_SET): Remove duplicate line --- diff --git a/sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S b/sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S index cbd0d077cf6..1404131bb71 100644 --- a/sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S +++ b/sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S @@ -90,7 +90,6 @@ # define PREFETCH_ONE_SET(dir, base, offset) \ PREFETCH ((offset)base); \ PREFETCH ((offset + dir * PREFETCH_SIZE)base); \ - PREFETCH ((offset + dir * PREFETCH_SIZE)base); \ PREFETCH ((offset + dir * PREFETCH_SIZE * 2)base); \ PREFETCH ((offset + dir * PREFETCH_SIZE * 3)base) # else