diff options
author | Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com> | 2018-05-15 11:56:03 -0500 |
---|---|---|
committer | Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com> | 2018-05-17 09:09:13 -0500 |
commit | e4ebc1380d03c64eba9089dc8adef2c0af03a9e1 (patch) | |
tree | 0cf66c59e8b87a5a179c6555c0521bc3480e3430 /sysdeps | |
parent | e363a91c21881be548bc40290e837aa202c1341f (diff) | |
download | glibc-e4ebc1380d03c64eba9089dc8adef2c0af03a9e1.zip glibc-e4ebc1380d03c64eba9089dc8adef2c0af03a9e1.tar.gz glibc-e4ebc1380d03c64eba9089dc8adef2c0af03a9e1.tar.bz2 |
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
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S b/sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S index cbd0d07..1404131 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 |