From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x336.google.com (mail-wm1-x336.google.com [IPv6:2a00:1450:4864:20::336]) by sourceware.org (Postfix) with ESMTPS id E11A3385840F for ; Fri, 24 Feb 2023 09:34:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org E11A3385840F Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=vrull.eu Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=vrull.eu Received: by mail-wm1-x336.google.com with SMTP id m25-20020a7bcb99000000b003e7842b75f2so1330356wmi.3 for ; Fri, 24 Feb 2023 01:34:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=vrull.eu; s=google; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=BK3G8Rkw6FCvhSmIIGkvzckeBzW0Hcs/nZUk0msNO1M=; b=qHngVn0Lg2rRPwImHWNDIrnruLJYPQPV6y9wd17/EWVPTFEDHchGpi4k4uv1XsPpdc QQJmePyPWYUhuWvtNWxpFiARy0q+QjNpaw5xczB/BS+aZqsyol4VVEMQhRJjpflVQ5Zk BvUAxSyzkGxJGSwxIizs+kCaR7Hvv2xAy2PYHGF3rBOJb0Getx9WYRNKUtuAG4BKbey1 QcDN5efGkThqb1iEgtmmB0v3xtcUoj5Prd64iVpoZo+K8nG2w7mePZOt5MIThVzLsMcU 85JMSk2AC5QzlaSKTDdLTPs0D7ujpAedwP75B481SsKu6qOu37mKsoVNfYjETmLJw63O bTwg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=BK3G8Rkw6FCvhSmIIGkvzckeBzW0Hcs/nZUk0msNO1M=; b=sL9Cnk5d0Lwx4Cp4FGtooZEVQX2/K/ptoxGEI5+WC97zasM6qtLM0nCuQQIu+A9bvl Bky9LiIPIcQOw8BZen1D+djJowLhQ12Ho9uIax2oTXvO/3GJsnUKDzyKiAaIw9+gHIx2 lnrIdXI+gB0E/LbqR4rpHuWp9IR5ePgaxVp+scmj8HERkYjpQbON0Y6aJkIpi9kB3i9E fg6mz1wzka+OTbY5AFoXkDlqR0AX2EHVBw5TvX6hbFsxtsKmPqJ3w7dpmYY5GLI860d7 n72+eGWTBAjLUilBG30TFzrkRDysitXej9AEtPjnAheRLfWv7OXJ16gdxT/qu1DiBuQd mDOg== X-Gm-Message-State: AO0yUKUQDXAteqw291mfRqG+dflax7qRSXzir+HInIhKld5TV2mnoMhp nW0kq2vVK+QxO9NdVQ8dASubtzl2xQlrRedFxtT43Q== X-Google-Smtp-Source: AK7set8fVkctN6/u0OFLoueoCHW4euhtoek7Asqy690k5Nm7aXpJdfp9T6SZXCsdPeg8qZgG8mx7HXBipqlSWyJMpgI= X-Received: by 2002:a05:600c:1c89:b0:3e2:669:f04e with SMTP id k9-20020a05600c1c8900b003e20669f04emr1017185wms.2.1677231245479; Fri, 24 Feb 2023 01:34:05 -0800 (PST) MIME-Version: 1.0 References: <20230224055127.2500953-1-christoph.muellner@vrull.eu> <20230224055127.2500953-10-christoph.muellner@vrull.eu> In-Reply-To: From: =?UTF-8?Q?Christoph_M=C3=BCllner?= Date: Fri, 24 Feb 2023 10:33:53 +0100 Message-ID: Subject: Re: [PATCH v3 09/11] riscv: thead: Add support for the XTheadMemPair ISA extension To: Kito Cheng Cc: gcc-patches@gcc.gnu.org, Kito Cheng , Jim Wilson , Palmer Dabbelt , Andrew Waterman , Philipp Tomsich , Jeff Law , Cooper Qu , Lifang Xia , Yunhai Shang , Zhiwei Liu Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,JMQ_SPF_NEUTRAL,KAM_SHORT,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,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: On Fri, Feb 24, 2023 at 10:01 AM Kito Cheng wrote: > > Got one fail: > > FAIL: gcc.target/riscv/xtheadmempair-1.c -O2 scan-assembler-times > th.luwd\t 4 > > It should scan lwud rather than luwd? Yes, this should be th.lwud. Must have been introduced after testing. I also ran the whole patchset again with RV32 and RV64. This should be the only issue of this kind in the series. Sorry for that!