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
This commit is contained in:
Leonardo Sandoval 2018-05-15 11:56:03 -05:00
parent e363a91c21
commit e4ebc1380d

View File

@ -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