From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 1460E3858D35; Sun, 13 Nov 2022 05:00:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1460E3858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1668315635; bh=rhAJNVASwyHpBPkG6/DQ60z5ajk1glMbfZwNJ1zXLQg=; h=From:To:Subject:Date:From; b=ATipgokmI/n8JGtZqtw1zH03PYqo/ae5n9G3v8nzeZ4YwJ7KpqG7KrQ13QUnAGnEr MVpPltoImK3xvGRv4NM9gr+WwgmF5R6S3yTdU4iH6Mjq80x9t4v+2dl+Mtrw5RjlBX Q23S5CSpTgAbwG3R1BZwugeVqY9L4Wal7Lgd8ZF0= From: "seurer at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug other/107665] New: [13 regression] g++.dg/cpp23/ext-floating1.C fails after r13-3387-g79d38dd46e6b07 Date: Sun, 13 Nov 2022 05:00:34 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: seurer at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED 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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: 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=3D107665 Bug ID: 107665 Summary: [13 regression] g++.dg/cpp23/ext-floating1.C fails after r13-3387-g79d38dd46e6b07 Product: gcc Version: 13.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: other Assignee: unassigned at gcc dot gnu.org Reporter: seurer at gcc dot gnu.org Target Milestone: --- Tried g:79d38dd46e6b07e5a90ab25df1438eb0918eb475, r13-3387-g79d38dd46e6b07 make -k check-gcc RUNTESTFLAGS=3D"dg.exp=3Dg++.dg/cpp23/ext-floating1.C" FAIL: g++.dg/cpp23/ext-floating1.C -std=3Dgnu++23 (test for excess errors) # of unexpected failures 1 This is failing on powerpc64 when the compiler is built with=20 --with-long-double-format=3Dieee. Excess errors: /home/seurer/gcc/git/gcc-test/gcc/testsuite/g++.dg/cpp23/ext-floating1.C:27= :54: error: static assertion failed /home/seurer/gcc/git/gcc-test/gcc/testsuite/g++.dg/cpp23/ext-floating1.C:28= :54: error: static assertion failed /home/seurer/gcc/git/gcc-test/gcc/testsuite/g++.dg/cpp23/ext-floating1.C:29= :61: error: static assertion failed /home/seurer/gcc/git/gcc-test/gcc/testsuite/g++.dg/cpp23/ext-floating1.C:30= :61: error: static assertion failed The failures are here: #ifdef __SIZEOF_FLOAT128__ static_assert (is_same::value); static_assert (is_same::value); static_assert (is_same::value); static_assert (is_same::value); #endif commit 79d38dd46e6b07e5a90ab25df1438eb0918eb475 (HEAD) Author: Jakub Jelinek Date: Wed Oct 19 18:55:46 2022 +0200 testsuite: Default make check-g++ vs. tests for newest C++ standard=