From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 36758 invoked by alias); 5 Dec 2016 15:54:14 -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 35569 invoked by uid 89); 5 Dec 2016 15:54:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.9 required=5.0 tests=BAYES_20,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=hindsight, UD:msg00262.html, msg00262html, reviewed 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; Mon, 05 Dec 2016 15:54:03 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 91218C030706; Mon, 5 Dec 2016 15:54:01 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-204-100.brq.redhat.com [10.40.204.100]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id uB5Fs0eI007244 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 5 Dec 2016 10:54:01 -0500 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id uB5Frwpk024877; Mon, 5 Dec 2016 16:53:58 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id uB5Frud7022957; Mon, 5 Dec 2016 16:53:56 +0100 Date: Mon, 05 Dec 2016 15:54:00 -0000 From: Jakub Jelinek To: Martin Sebor Cc: Rainer Orth , Gcc Patch List Subject: Re: [PATCH] correct handling of non-constant width and precision (pr 78521) Message-ID: <20161205155356.GL3541@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <9b412cbb-1cb0-6341-5b85-78f235f7ae6f@gmail.com> <8ee392e4-6c09-1a7d-b6f1-0aa20ba81cae@gmail.com> <8b27f594-f852-4b78-98f1-b3e48230bcc6@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8b27f594-f852-4b78-98f1-b3e48230bcc6@gmail.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-IsSubscribed: yes X-SW-Source: 2016-12/txt/msg00346.txt.bz2 On Mon, Dec 05, 2016 at 08:50:08AM -0700, Martin Sebor wrote: > I posted a bigger patch to fix this and other related problems on > Friday (https://gcc.gnu.org/ml/gcc-patches/2016-12/msg00262.html). > In hindsight, I should have probably committed the fix for this > on its own. Please let me know if this is blocking you and I'll > commit this fix by itself today so you don't have to wait for > the bigger patch to get reviewed and approved. You could just change the abs use to absu_hwi or abs_hwi if you need something quickly working (depending on whether HOST_WIDE_INT_MIN can appear or not). Jakub