From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pg1-x534.google.com (mail-pg1-x534.google.com [IPv6:2607:f8b0:4864:20::534]) by sourceware.org (Postfix) with ESMTPS id 485F03858C2D for ; Tue, 11 Oct 2022 04:12:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 485F03858C2D Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-pg1-x534.google.com with SMTP id e129so11818860pgc.9 for ; Mon, 10 Oct 2022 21:12:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=content-transfer-encoding:in-reply-to:from:references:to :content-language:subject:user-agent:mime-version:date:message-id :from:to:cc:subject:date:message-id:reply-to; bh=yIZ3w0rMjSu3QL+D4KVTM64yTPy+vsEpMkjKG0IGnSU=; b=IeTopEN8mSzwXxmGaylMkGd5VOGUqmSNIOmySCWwRwZFhu4C1vpHw/TVjC8is8hI7y q1Y9de2Ym/EKzhk3UmQbHMpFLFU5wIJ5QS8FGyqKf0MXJGSNqHTHbLTy+cGodErDOkUe GaqF8AhCUBi4QuiL/SM6On85BMMzI+43vslV4VSMgqGa2S0I/2HF0xVHABqFm29nxfR9 Nxt1GOojccQfX0geXSuKROJBjqmqxeH1caKz+9Ekt1xrkCfQ/6y02klZMe30CEKp/t29 Uq+OVprJ/Frwv52MW+3Kij43GA/jWQKowJ212KOrAUNkClx1J5I68fMose9PyA/yY6Em QALA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:in-reply-to:from:references:to :content-language:subject:user-agent:mime-version:date:message-id :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=yIZ3w0rMjSu3QL+D4KVTM64yTPy+vsEpMkjKG0IGnSU=; b=M3m05o5v4X9gg3BhJcNdpG+sawgA8IFPylwNxD3f00ZGWNMdoi4XSLrpAOvQaIaa2b EXKntfALf1m9z1eLBPsEC//hZnRL8pVAqmPaul+tkbut9epp3q4//7ZkPzxlnG3WlOb7 DyKmicQMoovI1ZuVwKawevcGGwAu11fDL8hNoFQarmyU/+SbF+85Ut4PCrK12u3gcFK2 aWNZUQEOOHkWBEE4Znr23B2h3y9UElErsRz6i0wfyD3KIMv50q1i3AWUFGnhQhD+EAzx ow1mQZGxtL67RU/2I0jnLhYCXlBpx7Saa8p27VQYjsTU0CEzrDrjyTDhoPo2wfIxJkYI OtsA== X-Gm-Message-State: ACrzQf1WrCb4/OtZeLesaPeMXCBxLGMvbzwxbRp534ZO3T+Re2LZOMbS rq/VADfkePt646p6CUXbIQb632hUa1uBhg== X-Google-Smtp-Source: AMsMyM4RoKeIr7v3KdolzVirDEGIkHgNZPthcrOkC9BbkfzgLMtO586B0PD8iYXA5o3kslARRoLsSA== X-Received: by 2002:a63:db42:0:b0:45c:9c73:d72e with SMTP id x2-20020a63db42000000b0045c9c73d72emr18827268pgi.181.1665461520789; Mon, 10 Oct 2022 21:12:00 -0700 (PDT) Received: from ?IPV6:2601:681:8600:13d0::f0a? ([2601:681:8600:13d0::f0a]) by smtp.gmail.com with ESMTPSA id f8-20020a170902ce8800b00178b77b7e71sm7493709plg.188.2022.10.10.21.11.59 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 10 Oct 2022 21:12:00 -0700 (PDT) Message-ID: Date: Mon, 10 Oct 2022 22:11:59 -0600 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.3.1 Subject: Re: [PATCH][ICE] Fix for PR107193. Content-Language: en-US To: gcc-patches@gcc.gnu.org References: From: Jeff Law In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-3.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,NICE_REPLY_A,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 10/10/22 18:36, Eugene Rozenfeld via Gcc-patches wrote: > The bug was introduced in f30e9fd33e56a5a721346ea6140722e1b193db42. > A variable (cur_locus_e) was incorrectly declared inside a loop. > I also moved two other declarations (last and locus) down to make > the code more clear. > > Tested on x86_64-pc-linux-gnu. > > gcc/ChangeLog: > PR debug/107193 > * tree-cfg.cc (assign_discriminators): Move declaration of cur_locus_e > out of the loop. Thanks.  I suspect this caused the hppa bootstrap failure due to comparison mismatch as well.  Given it's an 8hr build, I'm inclined to just restart it once this patch goes in and hope rather than bisect :-) jeff