From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 39226 invoked by alias); 9 Jul 2019 19:22:15 -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 39114 invoked by uid 89); 9 Jul 2019 19:22:14 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-4.4 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,SPF_PASS autolearn=ham version=3.3.1 spammy=HTo:U*john, HX-HELO:sk:fencepo, HX-Envelope-From:sk:gcc-ref X-HELO: fencepost.gnu.org Received: from fencepost.gnu.org (HELO fencepost.gnu.org) (209.51.188.10) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 09 Jul 2019 19:22:13 +0000 Received: from eggs.gnu.org ([2001:470:142:3::10]:33640) by fencepost.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1hkvgp-0005RJ-AS for gcc-patches@gnu.org; Tue, 09 Jul 2019 15:22:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hkvgo-0003tt-BO for gcc-patches@gnu.org; Tue, 09 Jul 2019 15:22:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39152) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hkvgo-0003ez-3G for gcc-patches@gnu.org; Tue, 09 Jul 2019 15:22:10 -0400 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3C834223873; Tue, 9 Jul 2019 19:11:59 +0000 (UTC) Received: from localhost.localdomain (ovpn-112-18.rdu2.redhat.com [10.10.112.18]) by smtp.corp.redhat.com (Postfix) with ESMTP id B3E8F5C634; Tue, 9 Jul 2019 19:11:58 +0000 (UTC) Subject: Re: [PATCH] simplify-rtx.c (simplify_unary_operation_1): Change BITSIZE to PRECISION. To: John Darrington , gcc-patches@gnu.org References: <20190708071108.773-1-john@darrington.wattle.id.au> <20190708071108.773-2-john@darrington.wattle.id.au> From: Jeff Law Openpgp: preference=signencrypt Message-ID: Date: Tue, 09 Jul 2019 19:22:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0 MIME-Version: 1.0 In-Reply-To: <20190708071108.773-2-john@darrington.wattle.id.au> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 X-IsSubscribed: yes X-SW-Source: 2019-07/txt/msg00727.txt.bz2 On 7/8/19 1:11 AM, John Darrington wrote: > gcc/ > * simplify-rtx.c (simplify_unary_operation_1): Change BITSIZE to PRECISION > in simplification of (extend ashiftrt (ashift ..))) Otherwise the > gcc_assert can catch when dealing with partial int modes. THanks. I edited the ChangeLog entry a bit and installed the patch on the trunk. jeff > ---