https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103387

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2021-11-23 00:00:00         |2023-3-28

--- Comment #6 from Jonathan Wakely <redi at gcc dot gnu.org> ---
I thought it was, but no, it seems to still crash:

$ ~/gcc/13/bin/g++ -v
Using built-in specs.
COLLECT_GCC=/home/test/gcc/13/bin/g++
COLLECT_LTO_WRAPPER=/home/test/gcc/13/libexec/gcc/powerpc64le-unknown-linux-gnu/13.0.1/lto-wrapper
Target: powerpc64le-unknown-linux-gnu
Configured with: /home/test/src/gcc/configure --enable-languages=c++
--disable-bootstrap --prefix=/home/test/gcc/13
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 13.0.1 20230327 (experimental) (GCC) 
$ ~/gcc/13/bin/g++ d.cc -mabi=ieeelongdouble -Wl,-rpath,$HOME/gcc/13/lib64 
$ ldd ./a.out
        linux-vdso64.so.1 (0x00007fffa0fa0000)
        libstdc++.so.6 => /home/test/gcc/13/lib64/libstdc++.so.6
(0x00007fffa0c00000)
        libm.so.6 => /lib64/libm.so.6 (0x00007fffa0ab0000)
        libgcc_s.so.1 => /home/test/gcc/13/lib64/libgcc_s.so.1
(0x00007fffa0a50000)
        libc.so.6 => /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=ibm and the
testcase is built with -mabi=ieeelongdouble

Reply via email to