From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 55BFC3876890; Fri, 30 Jun 2023 19:22:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 55BFC3876890 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1688152933; bh=GHgAXPlVem4s7VI+D5JgSdtc4svIbDiDDrtoNm2niSQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=S97mAQBQiSHSSXE12uWINoC8DvwuAtiCq38F4lA9+M7larFuCaNrCGn8srOx3P7rd 0KLB6rctOlaGkmK80vIKV9potZeynUi6eZPd4/XSQOcfKg1+ZKuEgEVQ+anLPJapyw AATgy7MYosYxgkviGUZc2dIgrZmZrrEJ8xYltg8Y= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/102989] Implement C2x's n2763 (_BitInt) Date: Fri, 30 Jun 2023 19:22:11 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 12.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW 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: attachments.isobsolete attachments.created 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=3D102989 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #55427|0 |1 is obsolete| | --- Comment #73 from Jakub Jelinek --- Created attachment 55435 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D55435&action=3Dedit gcc14-bitint-wip.patch WIP on casts, casts from non-_BitInt integers or small/middle _BitInt to large/huge _BitInt tested (at least when used as operands of mergeable operations or comparisons/shifts/stores), cast between different precision large/huge _BitInt implemented but so far untested, casts from large/huge _BitInt to non-_BitInt integers or small/middle _BitInt yet to be implement= ed. After that multiplication/division/modulo, then casts from/to floating poin= t.=