From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1992) id 7336E384F494; Fri, 16 Dec 2022 16:48:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7336E384F494 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1671209308; bh=3XXhuVQDf4CqqOEKOyvIdV3w5sUi1qzLAW6p5UqIsB4=; h=From:To:Subject:Date:From; b=Kvty22t9ssFyo9L3L1V+6fMIRRLPHSa8vfoVcoa3Q8KP7dbC5z1/imCYFPRU2fViv 4d3/diNwFQ83FN6YcaCboMsMjnNIzdqCu8Ft1/dKXKTr1CUJL8YldbqKlTq8VH1Yhy iOq4bFhOnQo14YKnIUJG9xkbkY7oLTt0cpwtppI4= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Palmer Dabbelt To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-4747] RISC-V: Fix up some wording in the mcpu/mtune comment X-Act-Checkin: gcc X-Git-Author: Palmer Dabbelt X-Git-Refname: refs/heads/trunk X-Git-Oldrev: df049cb2153839fdf6c6bdc27acf5a5151f74a99 X-Git-Newrev: 9bb7864877ab05bf951fad66c934845351b271ce Message-Id: <20221216164828.7336E384F494@sourceware.org> Date: Fri, 16 Dec 2022 16:48:28 +0000 (GMT) List-Id: https://gcc.gnu.org/g:9bb7864877ab05bf951fad66c934845351b271ce commit r13-4747-g9bb7864877ab05bf951fad66c934845351b271ce Author: Palmer Dabbelt Date: Mon Nov 28 13:36:00 2022 -0800 RISC-V: Fix up some wording in the mcpu/mtune comment gcc/ChangeLog: * config/riscv/riscv.cc (riscv_option_override): Fix comment wording. Diff: --- gcc/config/riscv/riscv.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/riscv/riscv.cc b/gcc/config/riscv/riscv.cc index 1f85391fc8e..6dd2ab2d11e 100644 --- a/gcc/config/riscv/riscv.cc +++ b/gcc/config/riscv/riscv.cc @@ -5991,7 +5991,7 @@ riscv_option_override (void) target_flags |= MASK_FDIV; /* Handle -mtune, use -mcpu if -mtune is not given, and use default -mtune - if -mtune and -mcpu both not given. */ + if both -mtune and -mcpu are not given. */ cpu = riscv_parse_tune (riscv_tune_string ? riscv_tune_string : (riscv_cpu_string ? riscv_cpu_string : RISCV_TUNE_STRING_DEFAULT));