From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 96550 invoked by alias); 5 Apr 2017 16:18:16 -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 95803 invoked by uid 89); 5 Apr 2017 16:18:15 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-16.9 required=5.0 tests=BAYES_00,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= 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 ESMTP; Wed, 05 Apr 2017 16:18:14 +0000 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 EC1498B135 for ; Wed, 5 Apr 2017 16:18:13 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com EC1498B135 Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=vmakarov@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com EC1498B135 Received: from [10.10.123.183] (ovpn-123-183.rdu2.redhat.com [10.10.123.183]) by smtp.corp.redhat.com (Postfix) with ESMTP id AC3C95C54B for ; Wed, 5 Apr 2017 16:18:13 +0000 (UTC) Subject: Re: patch to fix PR70703 To: gcc-patches@gcc.gnu.org References: <92d87dc9-0d07-4540-55cd-eca8177ae533@redhat.com> <20170405152500.GT17461@tucnak> <36aee908-ddad-4524-c7c6-d52c2567847a@redhat.com> From: Vladimir Makarov Message-ID: <8b578f82-f008-aacc-f3e6-c6bc248babb3@redhat.com> Date: Wed, 05 Apr 2017 16:18:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0 MIME-Version: 1.0 In-Reply-To: <36aee908-ddad-4524-c7c6-d52c2567847a@redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2017-04/txt/msg00239.txt.bz2 On 04/05/2017 12:07 PM, Vladimir Makarov wrote: > > > I'll correct the patch. > Here is the patch I've committed. 2017-04-05 Vladimir Makarov PR rtl-optimization/70703 * ira-color.c (update_conflict_hard_regno_costs): Use HOST_WIDE_INT instead of long. Index: ira-color.c =================================================================== --- ira-color.c (revision 246707) +++ ira-color.c (working copy) @@ -1522,7 +1522,7 @@ index = ira_class_hard_reg_index[aclass][hard_regno]; if (index < 0) continue; - cost = (int) (((long) conflict_costs [i] * mult) / div); + cost = (int) (((HOST_WIDE_INT) conflict_costs [i] * mult) / div); if (cost == 0) continue; cont_p = true;