From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1373 invoked by alias); 1 Sep 2014 08:36:07 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 1333 invoked by uid 89); 1 Sep 2014 08:36:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.6 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 01 Sep 2014 08:36:00 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s818Zq6R008274 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Mon, 1 Sep 2014 04:35:53 -0400 Received: from tucnak.zalov.cz (ovpn-116-53.ams2.redhat.com [10.36.116.53]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s818ZoeA015142 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 1 Sep 2014 04:35:52 -0400 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.14.8/8.14.7) with ESMTP id s818ZnMP002017; Mon, 1 Sep 2014 10:35:49 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.14.8/8.14.8/Submit) id s818Zlpr002016; Mon, 1 Sep 2014 10:35:47 +0200 Date: Mon, 01 Sep 2014 08:36:00 -0000 From: Jakub Jelinek To: "Thomas Preud'homme" Cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH] Fix byte size confusion in bswap pass Message-ID: <20140901083547.GG17454@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <000301cfc355$bbe9c550$33bd4ff0$@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000301cfc355$bbe9c550$33bd4ff0$@arm.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2014-09/txt/msg00017.txt.bz2 On Fri, Aug 29, 2014 at 02:51:57PM +0800, Thomas Preud'homme wrote: > 2014-08-29 Thomas Preud'homme > > * tree-ssa-math-opts.c (struct symbolic_number): Clarify comment about > the size of byte markers. > (do_shift_rotate): Fix confusion between host, target and marker byte > size. > (verify_symbolic_number_p): Likewise. > (find_bswap_or_nop_1): Likewise. > (find_bswap_or_nop): Likewise. Ok, thanks. Jakub