From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id ABE263858C83; Wed, 15 Mar 2023 21:31:19 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org ABE263858C83 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1678915879; bh=fLj3IKFvfb/0FRkySPix2ViaGZ+wG5r1IM9svGUzgDI=; h=From:To:Subject:Date:In-Reply-To:References:From; b=e086AYZaDQZpIeluDFZAWP0ebuF+O454l/+lltaFmqKp73p9ce3yZW+vmBpZ4aEx7 7IHb+pNEllJpB/xCHbq1Oi5GxZ8Ew+ZR8lrdYuQj6XWF0Z0R4PirdKtsw9CToFFLTT OlPGYPY9eOCCAw8vx4LkIKdN7QHhLTeA5MtMcwoE= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug modula2/109125] [13 regression] SIGBUS in m2pim_ldtoa_ldtoa Date: Wed, 15 Mar 2023 21:31:19 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: modula2 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: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: gaius at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 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=3D109125 --- Comment #8 from CVS Commits --- The master branch has been updated by Gaius Mulley : https://gcc.gnu.org/g:8f1711ef3486b0727ccf6b5aabddda5c7d986457 commit r13-6700-g8f1711ef3486b0727ccf6b5aabddda5c7d986457 Author: Gaius Mulley Date: Wed Mar 15 21:30:33 2023 +0000 PR 109125 13 regression SIGBUS in m2pim_ldtoa_ldtoa This patch fixes more bool int parameter mismatches found in dtoa and ldtoa. gcc/m2/ChangeLog: PR modula2/109125 * gm2-libs-ch/dtoa.cc (dtoa_strtod): Replace int with bool. * gm2-libs-ch/ldtoa.cc (ldtoa_strtold): Replace int with bool. libgm2/ChangeLog: PR modula2/109125 * libm2pim/dtoa.cc (TRUE): Remove. (FALSE): Remove. Replace int with bool. * libm2pim/ldtoa.cc (TRUE): Remove. (FALSE): Remove. Replace int with bool. Signed-off-by: Gaius Mulley =