From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 307A03854177; Fri, 16 Sep 2022 10:31:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 307A03854177 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1663324292; bh=6TPBiHMNy7Mj9n0RAThWCXB0sQr6ouPx4V5frH0kn/U=; h=From:To:Subject:Date:From; b=D4QlPAaFIp9A+GYwr0Vfa6JtOXOcQa0JOL2HCa+9nii0zDS0NTKSKiyDCjDd0y5E9 hwqYuCSH9dBLjRsGcpL55pNG5bYj1Plaxw6BBmysM03F0vs5XNG6g0PmMRNCBrqc5H teK4zgq8FmVg1pFizgpfk65tW1FxFWEEVUfcL0jY= From: "asolokha at gmx dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/106955] New: [13 Regression] '-fcompare-debug' failure w/ -std=c++20 -O1 -ftree-parallelize-loops=2 -fno-ipa-sra --param ggc-min-expand=55 Date: Fri, 16 Sep 2022 10:31:31 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: compare-debug-failure X-Bugzilla-Severity: normal X-Bugzilla-Who: asolokha at gmx dot com 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 keywords bug_severity priority component assigned_to reporter target_milestone attachments.created 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=3D106955 Bug ID: 106955 Summary: [13 Regression] '-fcompare-debug' failure w/ -std=3Dc++20 -O1 -ftree-parallelize-loops=3D2 -fno-ipa-= sra --param ggc-min-expand=3D55 Product: gcc Version: 13.0 Status: UNCONFIRMED Keywords: compare-debug-failure Severity: normal Priority: P3 Component: debug Assignee: unassigned at gcc dot gnu.org Reporter: asolokha at gmx dot com Target Milestone: --- Created attachment 53582 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D53582&action=3Dedit gkd diff g++ 13.0.0 20220911 snapshot (g:0ea5e3f4542832b8da016b152695e64a2a386309) f= ails -fcompare-debug check when compiling the following testcase, reduced from test/std/containers/sequences/forwardlist/forwardlist.ops/sort.pass.cpp from the libc++ 14.0.6 test suite, w/ -std=3Dc++20 -O1 -ftree-parallelize-loops= =3D2 -fno-ipa-sra --param ggc-min-expand=3D55: #include #include #include #include void test_stable () { std::vector v; for (int i =3D 0; i < 1000; ++i) v.push_back (i); for (int i =3D 0; i < 1000; ++i) v[i] =3D i; } % g++-13.0.0 -std=3Dc++20 -O1 -fcompare-debug -ftree-parallelize-loops=3D2 -fno-ipa-sra --param ggc-min-expand=3D55 -c dfptqjrz.cpp g++-13.0.0: error: dfptqjrz.cpp: '-fcompare-debug' failure gkd diff attached. Preprocessed testcase is still being reduced, currently at 06:43:08 INFO (66.7%, 468334 bytes, 7781 lines) I'll post it here once the reducer yields something meaningful under several kilobytes in size.=