From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by sourceware.org (Postfix) with ESMTPS id 3EAD33838683 for ; Thu, 15 Dec 2022 23:05:39 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 3EAD33838683 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=sc.intel.com Authentication-Results: sourceware.org; spf=none smtp.mailfrom=sc.intel.com X-IronPort-AV: E=McAfee;i="6500,9779,10562"; a="319997277" X-IronPort-AV: E=Sophos;i="5.96,248,1665471600"; d="scan'208";a="319997277" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Dec 2022 15:03:12 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10562"; a="738330236" X-IronPort-AV: E=Sophos;i="5.96,248,1665471600"; d="scan'208";a="738330236" Received: from scymds02.sc.intel.com ([10.82.73.244]) by FMSMGA003.fm.intel.com with ESMTP; 15 Dec 2022 15:03:11 -0800 Received: from gnu-clx-1.sc.intel.com (gnu-clx-1.sc.intel.com [172.25.70.179]) by scymds02.sc.intel.com with ESMTP id 2BFN3B1P028840; Thu, 15 Dec 2022 15:03:11 -0800 Received: by gnu-clx-1.sc.intel.com (Postfix, from userid 1000) id 7E7203E001E; Thu, 15 Dec 2022 15:03:11 -0800 (PST) Date: Thu, 15 Dec 2022 15:03:11 -0800 To: haochen.jiang@intel.com, hjl.tools@gmail.com, gcc-regression@gcc.gnu.org Subject: Regressions under Intel SDE on native/master at commit r13-4728 vs commit r13-4722 on Linux/x86_64 User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20221215230311.7E7203E001E@gnu-clx-1.sc.intel.com> From: "H. J. Lu" X-Spam-Status: No, score=-3456.2 required=5.0 tests=BAYES_00,KAM_DMARC_STATUS,KAM_LAZY_DOMAIN_SECURITY,KAM_NUMSUBJECT,KAM_SHORT,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: New failures: FAIL: gcc.target/i386/pr64110.c scan-assembler vmovd[\\t ] New passes: To reproduce the test failures: $ cd gcc $ make check RUNTESTFLAGS="--target_board='unix{-m32,}' i386.exp=failed-test" If a run-time test failure fails to reproduce, please run the executable under Intel SDE which can be downloaded from https://www.intel.com/content/www/us/en/developer/articles/tool/software-development-emulator.html $ ..../sde -future -- ./executable To debug executable under SDE: 1. Turn on SDE debug: $ ..../sde -future -debug -- ./executable and you should get: Application stopped until continued from debugger. Start GDB, then issue this command at the (gdb) prompt: target remote :xxxxx where xxxxx is a random number. 2. Run gdb $ gdb ./executable ... (gdb) target remote :xxxxx and you should get: ... Reading symbols from /lib64/ld-linux-x86-64.so.2...(no debugging symbols found)...done. Loaded symbols for /lib64/ld-linux-x86-64.so.2 0x00007fae0fc07100 in _start () from /lib64/ld-linux-x86-64.so.2 (gdb)