From patchwork Tue May 15 17:13:03 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: leonardo.sandoval.gonzalez@linux.intel.com X-Patchwork-Id: 27273 Received: (qmail 102917 invoked by alias); 15 May 2018 17:13:31 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 102893 invoked by uid 89); 15 May 2018 17:13:31 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.1 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY autolearn=ham version=3.3.2 spammy= X-HELO: mga12.intel.com X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 From: leonardo.sandoval.gonzalez@linux.intel.com To: libc-alpha@sourceware.org Cc: hjl.tools@gmail.com, Leonardo Sandoval Subject: [PATCH] x86-64: remove duplicate line on PREFETCH_ONE_SET macro Date: Tue, 15 May 2018 12:13:03 -0500 Message-Id: <20180515171303.11312-1-leonardo.sandoval.gonzalez@linux.intel.com> From: Leonardo Sandoval Tested on 64-bit AVX machine * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S (MEMMOVE): remove duplicate line on PREFETCH_ONE_SET macro Signed-off-by: Leonardo Sandoval --- sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S | 1 - 1 file changed, 1 deletion(-) 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