From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 271E23858430; Tue, 28 Mar 2023 09:16:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 271E23858430 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1679994971; bh=5nJfMVTe4Vr0veH/QF2evYafJ0uFG+o6wU5MZXDTJWU=; h=From:To:Subject:Date:In-Reply-To:References:From; b=AEE6ZJkuLpK5qNNlM0ubwmbqw4fYAGEexeSruMnW7T8oOkSUkgKWJx0fd+cRKYEHk /Na0AabM1jCsC/f22wdvNFFoAs6qtVuBIUbLPn1Xn+OD+altfrEe4ONTIkP/1uJ9l5 9rfUDcMS1dZjsrxLe/5VD4PkWm3io1lkvKFxHchc= From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/103387] powerpc64le: segmentation fault on std::cout with ieee128 long double variable Date: Tue, 28 Mar 2023 09:16:02 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 12.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: redi at gcc dot gnu.org X-Bugzilla-Target-Milestone: 12.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cf_reconfirmed_on 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=3D103387 Jonathan Wakely changed: What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed|2021-11-23 00:00:00 |2023-3-28 --- Comment #6 from Jonathan Wakely --- I thought it was, but no, it seems to still crash: $ ~/gcc/13/bin/g++ -v Using built-in specs. COLLECT_GCC=3D/home/test/gcc/13/bin/g++ COLLECT_LTO_WRAPPER=3D/home/test/gcc/13/libexec/gcc/powerpc64le-unknown-lin= ux-gnu/13.0.1/lto-wrapper Target: powerpc64le-unknown-linux-gnu Configured with: /home/test/src/gcc/configure --enable-languages=3Dc++ --disable-bootstrap --prefix=3D/home/test/gcc/13 Thread model: posix Supported LTO compression algorithms: zlib gcc version 13.0.1 20230327 (experimental) (GCC)=20 $ ~/gcc/13/bin/g++ d.cc -mabi=3Dieeelongdouble -Wl,-rpath,$HOME/gcc/13/lib6= 4=20 $ ldd ./a.out linux-vdso64.so.1 (0x00007fffa0fa0000) libstdc++.so.6 =3D> /home/test/gcc/13/lib64/libstdc++.so.6 (0x00007fffa0c00000) libm.so.6 =3D> /lib64/libm.so.6 (0x00007fffa0ab0000) libgcc_s.so.1 =3D> /home/test/gcc/13/lib64/libgcc_s.so.1 (0x00007fffa0a50000) libc.so.6 =3D> /lib64/libc.so.6 (0x00007fffa0600000) /lib64/ld64.so.2 (0x00007fffa0fb0000) $ ./a.out Segmentation fault (core dumped) GCC is built with the implied default of --with-long-double-format=3Dibm an= d the testcase is built with -mabi=3Dieeelongdouble=