From patchwork Tue May 15 19:32:38 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: 27275 Received: (qmail 80209 invoked by alias); 15 May 2018 19:33:07 -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 80198 invoked by uid 89); 15 May 2018 19:33:06 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.3 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: mga01.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 v2] x86-64: remove duplicate line on PREFETCH_ONE_SET macro Date: Tue, 15 May 2018 14:32:38 -0500 Message-Id: <20180515193238.14428-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 (PREFETCH_ONE_SET): Remove duplicate line --- 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