From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ed1-x536.google.com (mail-ed1-x536.google.com [IPv6:2a00:1450:4864:20::536]) by sourceware.org (Postfix) with ESMTPS id 4A0553850411 for ; Thu, 7 Jan 2021 19:48:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 4A0553850411 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=sifive.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=jimw@sifive.com Received: by mail-ed1-x536.google.com with SMTP id y24so8874231edt.10 for ; Thu, 07 Jan 2021 11:48:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sifive.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=5OugTiz1qH1/jfGPPb6ZBxk8a5iudRYcpRZIxZh8s8I=; b=YCZ9NARZX5PlEge3l+GOQ9gwrYjtCFPC0NerJOyiwAARMN3NnKloBdtP87v8PjMgEj FX2zzc8t/tg96J28KgQXLQaoRtbDJMdMZi30hgup1ywu+8rxulIJYHRZwvO/edC6G2u3 gR4M2A9iyIfosdJBfbkQhzwgXa+mVP8XpuAT5h+3S0JwRzt/cdY/u/ZH3tYhYuk+sDo6 22ISBaOhZJQxElpL4TTjt1wH6081rRx48jsyxb1l5uOaWq5o20nr6bSYJ1XSZsxsSjO7 9Z2qYQ23+hgmoPFL64Tyo4Z/JuBlsjTaxd8HrnR20Ir82CfOWXiTKUkoDJ/U1Z2UoU2i U9Gg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=5OugTiz1qH1/jfGPPb6ZBxk8a5iudRYcpRZIxZh8s8I=; b=Ah2G/OPFB+nyZaPtbAeiHOdpadlWh5dF7D8Lz671vOxDJCLw8aAAGMyuHHH79aEh7r QyddjgBoGxNzQRLTizpTU5LPyzEZAU0tqX3RDDAJX1T6KJJJZOp1XKO0Wb6J7AIDhDS1 dRb50Ry87K45JQI6/fzAF/qC2P2NDeqlrsHJ27x2dIipp1XzEANf6r2aTz7MPIARuzoI ntr0+UpmAvVhuTTf86kYLPVEhePPogb3Lm1/eRPOPqurFxqKReGCeESIF0klSfiFBJ8o avFX0frpN82L819oTFYGBaxm7zHFlJ21R7SQSEgyDpKtolDoIzYOsM3VZP8GnycH+vUV tZUw== X-Gm-Message-State: AOAM531Lz/89ghic0Zjz25ADj08mZ6oQOY7rzyEzgg3CQrS/VMp2yT9e N42F0k9sNYU9/h3wxIRmYDxZoyrJO8Fu7pPshZ/pIQ== X-Google-Smtp-Source: ABdhPJzqa7NrtBjMZdii76I9EPV6rxF9lCBWnmmm1XcgmjtNhtekgfY2zSJuq8iX6VvQjbfFvrjctVjf+JBCUncZ4kA= X-Received: by 2002:a50:e845:: with SMTP id k5mr2837002edn.35.1610048909327; Thu, 07 Jan 2021 11:48:29 -0800 (PST) MIME-Version: 1.0 References: <20210107095544.20845-1-kito.cheng@sifive.com> In-Reply-To: <20210107095544.20845-1-kito.cheng@sifive.com> From: Jim Wilson Date: Thu, 7 Jan 2021 11:48:18 -0800 Message-ID: Subject: Re: [PATCH v2 0/2] RISC-V: Introduce new architecture extension test macros To: Kito Cheng Cc: GCC Patches , Kito Cheng X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Jan 2021 19:48:32 -0000 On Thu, Jan 7, 2021 at 1:55 AM Kito Cheng wrote: > This patch set introduce new set of architecture extension test macros > which is accept on riscv-c-api-doc[1] recently. > > The motivation of this scheme is have an unify naming scheme for > extension macro and add the capability to checking version. > > V2 Changes: > - Fix MacOS build issue. > - Create new header file: riscv-subset.h > This patch series looks good to me. Jim