From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by sourceware.org (Postfix) with ESMTPS id 0EF3E3858CDA for ; Mon, 26 Sep 2022 05:19:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 0EF3E3858CDA Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=intel.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=intel.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1664169582; x=1695705582; h=from:to:cc:subject:date:message-id; bh=o6QhXpwmpPtCaJ5uxRtmp5OKwdJnWlIWCOJtX6uNwzs=; b=TBn7vSe63Npx4KaouabMkZxNu/a/udS7TAUMRwaJZqSuLjM/I5zZTM55 /KfKhL7Y6FseogjW49WFXEA3S6cuHAUaiz6lFDXbKKgUFwcGjosSv2gDi PzqVBMPyL4/xjKwkE5sNj1v4awO/QJUbgk1Ww5whbeVigWTZv09lMGtnR YaZrOYHL3sPmXH6szLSiUQ/CkdIZmttaYu9UsrL7ibMHSXyk1wiCHJVuu DB4Qm3MQilDDgv3yVf1tkOZZmwiB3JbrOUKvLilRWSvoDhU5No7dpYmrO eldltRi+2D81RJvp69rI1suhlrJRRYUr7neEZnntvMZjtEo/4LyCgp34A g==; X-IronPort-AV: E=McAfee;i="6500,9779,10481"; a="362769515" X-IronPort-AV: E=Sophos;i="5.93,345,1654585200"; d="scan'208";a="362769515" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Sep 2022 22:19:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10481"; a="683391487" X-IronPort-AV: E=Sophos;i="5.93,345,1654585200"; d="scan'208";a="683391487" Received: from shvmail03.sh.intel.com ([10.239.245.20]) by fmsmga008.fm.intel.com with ESMTP; 25 Sep 2022 22:19:38 -0700 Received: from shliclel314.sh.intel.com (shliclel314.sh.intel.com [10.239.240.214]) by shvmail03.sh.intel.com (Postfix) with ESMTP id 73CF3100567F; Mon, 26 Sep 2022 13:19:37 +0800 (CST) From: "Hu, Lin1" To: gcc-patches@gcc.gnu.org Cc: hongtao.liu@intel.com, ubizjak@gmail.com Subject: [PATCH] testsuite: Fix up avx256-unaligned-store-3.c test. Date: Mon, 26 Sep 2022 13:19:37 +0800 Message-Id: <20220926051937.729321-1-lin1.hu@intel.com> X-Mailer: git-send-email 2.18.2 X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_SHORT,SPF_HELO_NONE,SPF_NONE,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: Hi all, This patch aims to fix a problem that avx256-unaligned-store-3.c test reports two unexpected fails under "-march=cascadelake". Regtested on x86_64-pc-linux-gnu. Ok for trunk? BRs, Lin gcc/testsuite/ChangeLog: PR target/94962 * gcc.target/i386/avx256-unaligned-store-3.c: Add -mno-avx512f --- gcc/testsuite/gcc.target/i386/avx256-unaligned-store-3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.target/i386/avx256-unaligned-store-3.c b/gcc/testsuite/gcc.target/i386/avx256-unaligned-store-3.c index f909099bcb1..67635fb9e66 100644 --- a/gcc/testsuite/gcc.target/i386/avx256-unaligned-store-3.c +++ b/gcc/testsuite/gcc.target/i386/avx256-unaligned-store-3.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-O3 -dp -mavx -mavx256-split-unaligned-store -mtune=generic -fno-common" } */ +/* { dg-options "-O3 -dp -mavx -mavx256-split-unaligned-store -mtune=generic -fno-common -mno-avx512f" } */ #define N 1024 -- 2.18.2