From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id C7FEE3858D28 for ; Mon, 21 Mar 2022 07:12:26 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org C7FEE3858D28 Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out1.suse.de (Postfix) with ESMTP id 63880210EC; Mon, 21 Mar 2022 07:12:25 +0000 (UTC) Received: from murzim.suse.de (murzim.suse.de [10.160.4.192]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by relay2.suse.de (Postfix) with ESMTPS id 5B170A3B92; Mon, 21 Mar 2022 07:12:25 +0000 (UTC) Date: Mon, 21 Mar 2022 08:12:25 +0100 (CET) From: Richard Biener To: gcc-patches@gcc.gnu.org cc: Roger Sayle Subject: Re: [r12-7687 Regression] FAIL: gcc.target/i386/bt-5.c scan-assembler-times bt[lq][ \t] 7 on Linux/x86_64 In-Reply-To: <20220317180841.1A8532864701@gskx-2.sc.intel.com> Message-ID: References: <20220317180841.1A8532864701@gskx-2.sc.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, KAM_NUMSUBJECT, KAM_SHORT, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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: Mon, 21 Mar 2022 07:12:28 -0000 On Thu, 17 Mar 2022, sunil.k.pandey wrote: > On Linux/x86_64, > > 3a7ba8fd0cda387809e4902328af2473662b6a4a is the first bad commit > commit 3a7ba8fd0cda387809e4902328af2473662b6a4a > Author: Richard Biener > Date: Thu Mar 17 08:10:59 2022 +0100 > > tree-optimization/104960 - unsplit edges after late sinking > > caused > > FAIL: gcc.target/i386/bt-5.c scan-assembler-not sar[lq][ \t] > FAIL: gcc.target/i386/bt-5.c scan-assembler-times bt[lq][ \t] 7 Btw, I've seen this as well and the "only" change is swapped edges out of a conditional from the split/unsplit dance. I was hoping somebody more familiar with the change intruducing that testcase was going to investigate but in the end it's probably RTL expansion presenting slightly different RTL IL to ifcvt. Richard.