From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from esa4.mentor.iphmx.com (esa4.mentor.iphmx.com [68.232.137.252]) by sourceware.org (Postfix) with ESMTPS id E2581393C853 for ; Fri, 28 Aug 2020 14:24:48 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org E2581393C853 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=Andrew_Stubbs@mentor.com IronPort-SDR: Fws82z+fG3YWOnPL0oUAg/RwqS+K65UN9K02Z3uMbj8Twrr66Xa4QgQazvPHWpJfIefxasWL9H 8PD6aLf4wwv495O7rnPyG4yBRH8WoaaVnfx77QZFH4ix+aTUbSFPkqHCm0j0pm4GULhcfd2ERG F9qYuXRUcJ9ohfi28+jpqr+X4C82vw2MoS7/9aWCyRNLgCbX2RVI7Yc/NAo1i1Xvtu+5EYUO8h Y0Ewe+cgZ96W80Sumeiiic2Hyp7H6fMXy6L+w60hGezhkGs/1xu5BPpTtMoKLOa8FbxQQ2mtVR fwg= X-IronPort-AV: E=Sophos;i="5.76,364,1592899200"; d="scan'208";a="52485387" Received: from orw-gwy-02-in.mentorg.com ([192.94.38.167]) by esa4.mentor.iphmx.com with ESMTP; 28 Aug 2020 06:24:47 -0800 IronPort-SDR: /8Yd/7+PadFBFy1rqvLWWKL0iTsb85rlgfG8GV2fu6ZC8jCQ9gJJ+rN6aDpqo8bVr7Q0SjQlSq Nd1DqZPJsScovf+qRyJ3332j69E7R6fKTX97DnoeNhGCFsPaXcrjqmq/tAVST26x9xCG2fihzV 2v+0unUBtcaKFu+xl8tInUXqmRTcLzywPVjA71v5pGcTswQGcMec1s7iLvtPBg+9Zqzr9EvPZA HkZ+W+7b9eMvAku0jSyor4n/g9AI/qDUWMY6+WZLY0KyNv3dxS+s+BPUur8aLLWK2RUkM0qAtj cCI= Subject: Re: [PATCH 1/3] vec: add exact argument for various grow functions. To: =?UTF-8?Q?Martin_Li=c5=a1ka?= , Richard Biener CC: GCC Patches , Jan Hubicka References: <8bf8b90a-6d10-90e3-62aa-633f7bbf71be@suse.cz> <34bd3626-39c0-2516-208d-0ebf5a736b1c@suse.cz> <20200727111104.GB84823@kam.mff.cuni.cz> <0011f4a6-7ece-47f6-e864-f837216f71c7@suse.cz> <84b9586d-63da-18bd-9113-05597520d58c@suse.cz> From: Andrew Stubbs Message-ID: <52cb6f63-8c52-d995-f1f8-25268ce663f7@codesourcery.com> Date: Fri, 28 Aug 2020 15:24:41 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: en-GB Content-Transfer-Encoding: 8bit X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: SVR-IES-MBX-04.mgc.mentorg.com (139.181.222.4) To SVR-IES-MBX-03.mgc.mentorg.com (139.181.222.3) X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, NICE_REPLY_A, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Aug 2020 14:24:50 -0000 On 11/08/2020 12:36, Martin Liška wrote: > Hello. > > All right, I did it in 3 steps: > 1) - new exact argument is added (no default value) - I tested the on > x86_64-linux-gnu > and I build all cross targets. > 2) set default value of exact = false > 3) change places which calculate its own growth to use the default argument > > I would like to install first 1) and then wait some time before the rest > is installed. This broke the amdgcn-amdhsa build. Should I just add "true" to fix it? That's enough to make it build. Andrew