From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ej1-x62f.google.com (mail-ej1-x62f.google.com [IPv6:2a00:1450:4864:20::62f]) by sourceware.org (Postfix) with ESMTPS id C56DA386F82B for ; Thu, 26 May 2022 06:11:13 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org C56DA386F82B Received: by mail-ej1-x62f.google.com with SMTP id rs12so1010064ejb.13 for ; Wed, 25 May 2022 23:11:13 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=CdDsLGMdOpF+xoOlQGmnXWrHWaBkUj9spsT+dL6PIwc=; b=dBOBMsUqGnUcoYCTHjoEAbIXEIJwZ7m++WIDU66c13Z4dHkjh7tLKEzqAHyYAUWZvz KjCHHoqUFIJMFsFMeCaj2xGs31ic4+GrhvuoGOBM0O2JC0O1Oti1p+qqmjaUmdkKLXl6 xJ1hikw+oslypmvq0WF508ZPVfsc803qKrChMjx95Y0jjKVeHTLw+CfH6eoimJp8eAkR Rv1TiIZvlLXZccMtXZZTUwEjU8olpLTwF6MEmphrGpUTQbZwExcoKb9BLhmMmSctUCL9 I5TJg/CeCEOq3RS1bCTtVKdVSVxuGSmheXtEVXLbkC4mgjpcMQyzXEQoBTUz5WWDoAG3 iwKA== X-Gm-Message-State: AOAM531xUvtHG6gRmKxGBpWyeXRemI8ztAI/4IBAtTzQqcF56Uau2iDx I8luREuBpTjRO0wo/PnfpJiZ+tCJW6ZxZd5Mla4= X-Google-Smtp-Source: ABdhPJzI9nD1uEt+p0OdWBrWlKjNg1c20CeaMFziH1rSxerdzrHbFn91+WsT5Qg/j6aQFnb9zJHMN2u9kwjpt2HpZ20= X-Received: by 2002:a17:907:3ea5:b0:6fe:ce25:7a69 with SMTP id hs37-20020a1709073ea500b006fece257a69mr19095484ejc.626.1653545472231; Wed, 25 May 2022 23:11:12 -0700 (PDT) MIME-Version: 1.0 References: <20220526023055.12682-1-palmer@rivosinc.com> In-Reply-To: <20220526023055.12682-1-palmer@rivosinc.com> From: Kito Cheng Date: Thu, 26 May 2022 14:11:00 +0800 Message-ID: Subject: Re: [PATCH] RISC-V: Add -mtune=thead-c906 to the invoke docs To: Palmer Dabbelt Cc: GCC Patches Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-8.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org 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, 26 May 2022 06:11:15 -0000 LGTM, thanks :) On Thu, May 26, 2022 at 10:31 AM Palmer Dabbelt wrote: > > gcc/ChangeLog > > * doc/invoke.texi (RISC-V): Document -mtune=thead-c906. > > Signed-off-by: Palmer Dabbelt > --- > gcc/doc/invoke.texi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi > index 71098d86313..a584dc6a7f9 100644 > --- a/gcc/doc/invoke.texi > +++ b/gcc/doc/invoke.texi > @@ -28088,7 +28088,7 @@ Permissible values for this option are: @samp{sifive-e20}, @samp{sifive-e21}, > Optimize the output for the given processor, specified by microarchitecture or > particular CPU name. Permissible values for this option are: @samp{rocket}, > @samp{sifive-3-series}, @samp{sifive-5-series}, @samp{sifive-7-series}, > -@samp{size}, and all valid options for @option{-mcpu=}. > +@samp{thead-c906}, @samp{size}, and all valid options for @option{-mcpu=}. > > When @option{-mtune=} is not specified, use the setting from @option{-mcpu}, > the default is @samp{rocket} if both are not specified. > -- > 2.34.1 >