From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7896) id 750953858D32; Tue, 19 Sep 2023 02:47:48 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 750953858D32 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1695091668; bh=G3FRzni4daOM9VYLyrgsGddJDaF1+eY1TGrmsRn1CPA=; h=From:To:Subject:Date:From; b=vX6U/ZgSbLE2UhbAMPiGfFkAPR8ujibDPAjJpaOkDL4jkJR71Hv+WMVO+IcHchF1S rMf3zblIxPUbSFwizwuShI8E9bcSxi3XEsoWSDZvx/1Fdp9QRbWfHuTYSvMYy5AUp9 1/oxPsD2YaNTDVqxxkYNt6+HcZP0R9dFeioNlZU0= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Tsukasa OI To: gcc-cvs@gcc.gnu.org Subject: [gcc r14-4119] RISC-V: Fix typos on comments (SVE -> RVV) X-Act-Checkin: gcc X-Git-Author: Tsukasa OI X-Git-Refname: refs/heads/master X-Git-Oldrev: f45cca26263c3563e9db15e0ba64d4a114316808 X-Git-Newrev: 7f4fc87086b5ad57edaaf628ba6cb92649d14453 Message-Id: <20230919024748.750953858D32@sourceware.org> Date: Tue, 19 Sep 2023 02:47:48 +0000 (GMT) List-Id: https://gcc.gnu.org/g:7f4fc87086b5ad57edaaf628ba6cb92649d14453 commit r14-4119-g7f4fc87086b5ad57edaaf628ba6cb92649d14453 Author: Tsukasa OI Date: Tue Sep 19 02:10:31 2023 +0000 RISC-V: Fix typos on comments (SVE -> RVV) We have the 'V' extension (RVV), not SVE from AArch64. gcc/ChangeLog: * config/riscv/riscv-vector-builtins.cc (builtin_decl, expand_builtin): Replace SVE with RVV. Diff: --- gcc/config/riscv/riscv-vector-builtins.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/riscv/riscv-vector-builtins.cc b/gcc/config/riscv/riscv-vector-builtins.cc index 5318651138a..5d4dc264fa6 100644 --- a/gcc/config/riscv/riscv-vector-builtins.cc +++ b/gcc/config/riscv/riscv-vector-builtins.cc @@ -4172,7 +4172,7 @@ builtin_decl (unsigned int code, bool) return (*registered_functions)[code]->decl; } -/* Attempt to fold STMT, given that it's a call to the SVE function +/* Attempt to fold STMT, given that it's a call to the RVV function with subcode CODE. Return the new statement on success and null on failure. Insert any other new statements at GSI. */ gimple * @@ -4192,7 +4192,7 @@ expand_builtin (unsigned int code, tree exp, rtx target) return function_expander (rfn.instance, rfn.decl, exp, target).expand (); } -/* Perform any semantic checks needed for a call to the SVE function +/* Perform any semantic checks needed for a call to the RVV function with subcode CODE, such as testing for integer constant expressions. The call occurs at location LOCATION and has NARGS arguments, given by ARGS. FNDECL is the original function decl, before