From nobody Sun May 19 00:17:19 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1713630675682376.4471053441928; Sat, 20 Apr 2024 09:31:15 -0700 (PDT) Received: from list by lists.xenproject.org with outflank-mailman.709414.1108586 (Exim 4.92) (envelope-from ) id 1ryDbw-0005Pi-TQ; Sat, 20 Apr 2024 16:30:44 +0000 Received: by outflank-mailman (output) from mailman id 709414.1108586; Sat, 20 Apr 2024 16:30:44 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1ryDbw-0005Pb-QV; Sat, 20 Apr 2024 16:30:44 +0000 Received: by outflank-mailman (input) for mailman id 709414; Sat, 20 Apr 2024 16:30:44 +0000 Received: from se1-gles-sth1-in.inumbo.com ([159.253.27.254] helo=se1-gles-sth1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1ryDbw-0005PV-9S for xen-devel@lists.xenproject.org; Sat, 20 Apr 2024 16:30:44 +0000 Received: from support.bugseng.com (mail.bugseng.com [162.55.131.47]) by se1-gles-sth1.inumbo.com (Halon) with ESMTPS id 547f1920-ff33-11ee-9e3a-7da7ca7a9ce9; Sat, 20 Apr 2024 18:30:42 +0200 (CEST) Received: from nico.bugseng.com (unknown [46.228.253.202]) by support.bugseng.com (Postfix) with ESMTPSA id 35E064EE0739; Sat, 20 Apr 2024 18:30:40 +0200 (CEST) X-Outflank-Mailman: Message body and most headers restored to incoming version X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: 547f1920-ff33-11ee-9e3a-7da7ca7a9ce9 From: Nicola Vetrini To: xen-devel@lists.xenproject.org, nicola.vetrini@bugseng.com Cc: sstabellini@kernel.org, michal.orzel@amd.com, xenia.ragiadakou@amd.com, ayan.kumar.halder@amd.com, consulting@bugseng.com, bertrand.marquis@arm.com, julien@xen.org, Simone Ballarin , Doug Goldstein , Julien Grall Subject: [XEN PATCH v3] automation/eclair_analysis: substitute deprecated service STD.emptrecd Date: Sat, 20 Apr 2024 18:30:36 +0200 Message-Id: <717082cdacbcb1876920d0491e3e026dc9bd9631.1713630559.git.nicola.vetrini@bugseng.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-ZM-MESSAGEID: 1713630676716100001 Content-Type: text/plain; charset="utf-8" The ECLAIR service STD.emptrecd (which checks for empty structures) is being deprecated; hence, as a preventive measure, STD.anonstct (which checks for structures with no named members, an UB in C99) is used here; the latter be= ing a more general case than the previous one, this change does not affect the analysis. This new service is already supported by the current version of ECLAIR. No functional change. Signed-off-by: Nicola Vetrini Acked-by: Julien Grall --- Changes in v3: - Provide a better description --- automation/eclair_analysis/ECLAIR/toolchain.ecl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/eclair_analysis/ECLAIR/toolchain.ecl b/automation/e= clair_analysis/ECLAIR/toolchain.ecl index 71a1e2cce029..86e9a79b5231 100644 --- a/automation/eclair_analysis/ECLAIR/toolchain.ecl +++ b/automation/eclair_analysis/ECLAIR/toolchain.ecl @@ -44,8 +44,8 @@ -doc_end =20 -doc_begin=3D"See Section \"6.19 Structures with No Members\" of "GCC_MANU= AL"." --config=3DSTD.emptrecd,behavior+=3D{c99,GCC_ARM64,specified} --config=3DSTD.emptrecd,behavior+=3D{c99,GCC_X86_64,specified} +-config=3DSTD.anonstct,behavior+=3D{c99,GCC_ARM64,specified} +-config=3DSTD.anonstct,behavior+=3D{c99,GCC_X86_64,specified} -doc_end =20 -doc_begin=3D"See Section \"6.18 Arrays of Length Zero\" of "GCC_MANUAL"." --=20 2.34.1