From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C62B93857C45; Tue, 28 Mar 2023 15:00:26 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C62B93857C45 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1680015626; bh=yGIB9+2zBXMdk/i+RlUt8go5pGXnXdJQuUIjzt9Zxps=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Wr9d9kllzGvVhpIresdNgeWHqh6uZppF+QITkUWTxREsXVVyK5RYUQ96LyGc0ydiz xGywxJ0IMHyU3gCMDViypVUSaJQSvgC3ULZELqXZZ+qqyV8U3dRMlsCd6jLtXVRAcl PMZ3WvRxye2dHwKEJtlv6gA7hPWINyMM2h1qTG+o= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/109312] Missing __riscv_v_intrinsic Date: Tue, 28 Mar 2023 15:00:26 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D109312 --- Comment #3 from CVS Commits --- The master branch has been updated by Kito Cheng : https://gcc.gnu.org/g:5a923516ae61ddc6dd863891db13189cbf392411 commit r13-6909-g5a923516ae61ddc6dd863891db13189cbf392411 Author: Kito Cheng Date: Tue Mar 28 22:21:50 2023 +0800 RISC-V: Define __riscv_v_intrinsic [PR109312] RVV intrinsic has defined a macro to identity the version of RVV intrinsic spec, we missed that before, thanksful we are catch this before release. gcc/ChangeLog: PR target/109312 * config/riscv/riscv-c.cc (riscv_ext_version_value): New. (riscv_cpu_cpp_builtins): Define __riscv_v_intrinsic and minor refactor. gcc/testsuite/ChangeLog: PR target/109312 * gcc.target/riscv/predef-__riscv_v_intrinsic.c: New test.=