From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id A45993858418; Fri, 22 Mar 2024 09:26:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A45993858418 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1711099592; bh=iA+cSw7NEselNUFl+8jGEjjqR9DZtJsFTq0mW0z1ZQQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=bmu+Lb5EzokiRw599alicyByU6dxfN8hX1rQrEeiMBKRjffohtt7EIhmmKWCkPwq3 VQTHwCW2TyPqXUl6CJ7shtT2sNNxh1++2XuvDraI9NVQfM7m4PIIxT8Oe+PaRKKjfi ODZ/KtCwaojUxXB0TfnfpAo9p6iWHFZh1r00XxrQ= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/112724] C++ "'excess_precision_expr' not supported by dump_expr" Date: Fri, 22 Mar 2024 09:26:30 +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: 14.0 X-Bugzilla-Keywords: diagnostic, testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit 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: 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=3D112724 --- Comment #3 from GCC Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:ca27c3b3a09fa051c0112769ba680e43b197aa97 commit r14-9614-gca27c3b3a09fa051c0112769ba680e43b197aa97 Author: Jakub Jelinek Date: Fri Mar 22 10:20:11 2024 +0100 testsuite: Fix up depobj-3.c test on i686-linux [PR112724] While I've posted a patch to handle EXCESS_PRECISION_EXPR in C/C++ pretty printing, still we'd need to handle (a + (float)5) and (float)(((long double)a) + (long double)5) and possibly (float)(((double)a) + (double)5) too for s390?, so the following patch just uses -fexcess-precision=3Dfa= st, so that the expression is always the same. 2024-03-22 Jakub Jelinek PR c++/112724 * c-c++-common/gomp/depobj-3.c: Add -fexcess-precision=3Dfast as dg-additional-options.=