From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 60950 invoked by alias); 22 Nov 2017 00:30:41 -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 60848 invoked by uid 89); 22 Nov 2017 00:30:35 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=BAYES_00,KB_WAM_FROM_NAME_SINGLEWORD,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=no 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, 22 Nov 2017 00:30:24 +0000 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 20849883C5; Wed, 22 Nov 2017 00:30:22 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-116-247.ams2.redhat.com [10.36.116.247]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 72FA560BF9; Wed, 22 Nov 2017 00:30:21 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id vAM0UINY018154; Wed, 22 Nov 2017 01:30:18 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id vAM0UFNs018153; Wed, 22 Nov 2017 01:30:15 +0100 Date: Wed, 22 Nov 2017 08:01:00 -0000 From: Jakub Jelinek To: Jeff Law , Richard Biener , Martin =?utf-8?B?TGnFoWth?= Cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH] Fix i?86 bootstrap (PR rtl-optimization/82044) Message-ID: <20171122003015.GE14653@tucnak> Reply-To: Jakub Jelinek References: <20170920081519.GU1701@tucnak> <7cff6742-bd7a-5ea2-80fb-aca74610f591@suse.cz> <7e976ae2-4aab-9abd-1990-94b9804db8f9@redhat.com> <87d09716-916c-974f-9a4e-7fa95f6b97c3@suse.cz> <20171121232720.GD14653@tucnak> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171121232720.GD14653@tucnak> User-Agent: Mutt/1.7.1 (2016-10-04) X-IsSubscribed: yes X-SW-Source: 2017-11/txt/msg01962.txt.bz2 On Wed, Nov 22, 2017 at 12:27:20AM +0100, Jakub Jelinek wrote: > The following patch fixes those two issues and adds similar overflow > check to record_store too (in that spot width is always non-negative, so > we don't need a special width == -1 handling). > > Bootstrapped successfully on i686-linux, ok for trunk if it passes regtest > there (and pending x86_64-linux bootstrap + regtest)? Now successfully bootstrapped/regtested on both. Jakub