From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28015 invoked by alias); 2 Sep 2013 09:30:13 -0000 Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org Received: (qmail 27962 invoked by uid 89); 2 Sep 2013 09:30:13 -0000 Received: from popelka.ms.mff.cuni.cz (HELO popelka.ms.mff.cuni.cz) (195.113.20.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 02 Sep 2013 09:30:13 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,SPF_NEUTRAL autolearn=no version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: popelka.ms.mff.cuni.cz Received: from domone.kolej.mff.cuni.cz (popelka.ms.mff.cuni.cz [195.113.20.131]) by popelka.ms.mff.cuni.cz (Postfix) with ESMTPS id 99A7652D77; Mon, 2 Sep 2013 11:29:58 +0200 (CEST) Received: by domone.kolej.mff.cuni.cz (Postfix, from userid 1000) id 65F125F822; Mon, 2 Sep 2013 11:29:58 +0200 (CEST) Date: Mon, 02 Sep 2013 09:30:00 -0000 From: =?utf-8?B?T25kxZllaiBCw61sa2E=?= To: Brooks Moses Cc: libc-alpha@sourceware.org, libc-ports@sourceware.org Subject: [COMMITED] Fix additional typo. Message-ID: <20130902092957.GD11034@domone.kolej.mff.cuni.cz> References: <20130813082629.GA27180@domone.kolej.mff.cuni.cz> <20130818164943.GA7418@domone> <20130818220954.GA20381@domone> <20130830125816.GA12178@domone.kolej.mff.cuni.cz> <5220C6CE.4030805@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <5220C6CE.4030805@google.com> User-Agent: Mutt/1.5.20 (2009-06-14) X-IsSubscribed: yes X-SW-Source: 2013-09/txt/msg00002.txt.bz2 On Fri, Aug 30, 2013 at 09:22:38AM -0700, Brooks Moses wrote: > On 08/30/2013 05:58 AM, Ondřej Bílka wrote: > >--- a/sysdeps/powerpc/powerpc32/power6/memcpy.S > >+++ b/sysdeps/powerpc/powerpc32/power6/memcpy.S > [...] > >- if there more then 0 bytes (1-3) bytes remaining and use > >+ if there more than 0 bytes (1-3) bytes remaining and use > > This needs to be corrected to "if there are more than". > > - Brooks Ok, I commited this correction as obvious. ./ChangeLog: * sysdeps/powerpc/powerpc32/power6/memcpy.S: Fix typo. --- sysdeps/powerpc/powerpc32/power6/memcpy.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/powerpc/powerpc32/power6/memcpy.S b/sysdeps/powerpc/powerpc32/power6/memcpy.S index c786806..a76f71e 100644 --- a/sysdeps/powerpc/powerpc32/power6/memcpy.S +++ b/sysdeps/powerpc/powerpc32/power6/memcpy.S @@ -433,7 +433,7 @@ L(wdu): Then if more than 4 bytes remain we again use aligned loads, shifts and or to generate the next dst word. We then process the remaining words using unaligned loads as needed. Finally we check - if there more than 0 bytes (1-3) bytes remaining and use + if there are more than 0 bytes (1-3) bytes remaining and use halfword and or byte load/stores to complete the copy. */ mr 4,12 /* restore unaligned adjusted src ptr */ -- 1.8.3.2