From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by sourceware.org (Postfix) with ESMTPS id 7856B3858D1E for ; Thu, 8 Sep 2022 11:01:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7856B3858D1E Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.de Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 5253C21EE2 for ; Thu, 8 Sep 2022 11:01:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1662634914; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type; bh=G+TVGZlurPj7nHGGc6JK1dPqDRRMSZivcvw8JdFF4x8=; b=y4Sh6osUCRGMCOXP+XaPqt3wP1V1OzaxTaETllrXV2Nc12nCmmvDnlJxgtUyVKA7wTG1Yf e7LK5H/pTIFOap9RUieqk6mNiBC0aAl5LNfI5110851m29Te4bf7/l+erTotsa7Mmrwlh4 aUYra7p6Wjm20ckfro0nlS+ap7eqZww= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1662634914; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type; bh=G+TVGZlurPj7nHGGc6JK1dPqDRRMSZivcvw8JdFF4x8=; b=jdHDAe46geNifMTpmEjx8KpS2TWJi7OwHeUTDcNMUX0bU1hqccPAIf1YtqCJskLb4RgKtt QP5IeG9Izk4C0jAQ== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 2A14F1322C for ; Thu, 8 Sep 2022 11:01:54 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id z4cnCaLLGWP3cwAAMHmgww (envelope-from ) for ; Thu, 08 Sep 2022 11:01:54 +0000 Date: Thu, 8 Sep 2022 13:01:53 +0200 (CEST) From: Richard Biener To: gcc-patches@gcc.gnu.org Subject: [PATCH] testsuite/106872 - fix uninit predicate dump scan MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Message-Id: <20220908110154.2A14F1322C@imap2.suse-dmz.suse.de> X-Spam-Status: No, score=-11.9 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE 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 ppc we see a doloop temp rather than ivtmp. Tested on x86_64-unknown-linux-gnu and ppc64le, pushed. PR testsuite/106872 * gcc.dg/uninit-pred-12.c: Adjust. --- gcc/testsuite/gcc.dg/uninit-pred-12.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.dg/uninit-pred-12.c b/gcc/testsuite/gcc.dg/uninit-pred-12.c index ebf0288af1f..4c66486fb3a 100644 --- a/gcc/testsuite/gcc.dg/uninit-pred-12.c +++ b/gcc/testsuite/gcc.dg/uninit-pred-12.c @@ -31,4 +31,4 @@ unsigned foo (unsigned v, int y, int w) } /* Make sure predicate analysis picked up the loop exit condition. */ -/* { dg-final { scan-tree-dump "AND \\(NOT \\(ivtmp" "uninit1" } } */ +/* { dg-final { scan-tree-dump "AND \\(NOT \\((ivtmp|doloop)" "uninit1" } } */ -- 2.35.3