From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 54F6C3858D28; Tue, 18 Apr 2023 14:10:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 54F6C3858D28 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1681827027; bh=E0lEcBUK1idc23+gQ7CjmbrkVU5Q6Oh+8t1/cwzA8DM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=fifLjTmts6JQgiQfsdK4R6R6jmDwMkdCWnjhvM8LsVQMK44sik1xPqGySHHD+IhU2 ZmUl+wwhY+fm0+0obex3t1v3WAlx1tlmp7HPa9w8tihZzCYsb3jr8uuma2TXY4VRBH 3GgjjMFs8nA+VcDOYT2G/UkJaz6x2wC6Ita3TIsM= From: "juzhe.zhong at rivai dot ai" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/109544] implicit declaration of function '__riscv_vsseg4e8_v_i8mf8' Date: Tue, 18 Apr 2023 14:10:27 +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: juzhe.zhong at rivai dot ai 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=3D109544 --- Comment #1 from JuzheZhong --- We don't support segment yet since segment load/store api will be changed. For example: The old api: __riscv_vsseg4e8_v_i8mf8(base, vint8mf8_t v0, vint8mf8_t v1, vint8mf8_t v2, vint8mf8_t v3, vl); will be changed into: __riscv_vsseg4e8_v_i8mf8(base, vint8mf8x4_t v0, vl); The latest segment load/store are not merged yet: https://github.com/riscv-non-isa/rvv-intrinsic-doc/pull/198 but will be soon merged. GCC will not implement old api, instead we are implementing latest api recently and they are expected in GCC 14.=