From patchwork Mon Jun 6 23:04:19 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Lu, Hongjiu" X-Patchwork-Id: 12826 Received: (qmail 126450 invoked by alias); 6 Jun 2016 23:04:34 -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 126440 invoked by uid 89); 6 Jun 2016 23:04:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=BAYES_20, KAM_LAZY_DOMAIN_SECURITY, NO_DNS_FOR_FROM, RP_MATCHES_RCVD, URIBL_RED autolearn=ham version=3.3.2 spammy=UD:memmove-vec-unaligned-erms.S, VEC_SIZE, sk:346d7a4, overlapping X-HELO: mga09.intel.com X-ExtLoop1: 1 Date: Mon, 6 Jun 2016 16:04:19 -0700 From: "H.J. Lu" To: GNU C Library Subject: [committed, PATCH] Fix a typo in comments in memmove-vec-unaligned-erms.S Message-ID: <20160606230419.GA15718@intel.com> Reply-To: "H.J. Lu" MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.6.1 (2016-04-27) * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S: Fix a typo in comments. --- ChangeLog | 5 +++++ sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b839cfb..f6304a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2016-06-06 H.J. Lu + + * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S: Fix + a typo in comments. + 2016-06-06 Joseph Myers [BZ #20213] diff --git a/sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S b/sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S index 346d7a4..3742c10 100644 --- a/sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S +++ b/sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S @@ -19,7 +19,7 @@ /* memmove/memcpy/mempcpy is implemented as: 1. Use overlapping load and store to avoid branch. 2. Load all sources into registers and store them together to avoid - possible address overflap between source and destination. + possible address overlap between source and destination. 3. If size is 8 * VEC_SIZE or less, load all sources into registers and store them together. 4. If address of destination > address of source, backward copy