From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id AEC763858C54; Tue, 23 Jan 2024 14:47:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AEC763858C54 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1706021252; bh=DY1cHVdz2i1Ij6AGf5gFBV7j7U5UUjqI/GIowdjd28U=; h=From:To:Subject:Date:From; b=SdZGEPDwdlSqVd176JTDa1ikk3KA0iNomPwgd59TZre/gtRBisBWfaBRFSoiBeLef MZZ8Xc9ICRC3eHtTXzxDXdgWUf+ZFGFsyWlsj87PULo/cbFoTzruUmht3oEW0OaiuK HAtamKqOe9OsfCzl2kfPAWjyTV6EpVfXUmWUXAN0= From: "dcb314 at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/113561] New: yet more verify_ssa fails Date: Tue, 23 Jan 2024 14:47:32 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dcb314 at hotmail 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 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=3D113561 Bug ID: 113561 Summary: yet more verify_ssa fails Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: dcb314 at hotmail dot com Target Milestone: --- For this C source code: char LZ4_decompress_generic_source; void LZ4_decompress_generic_endOnInput() { char *ip =3D &LZ4_decompress_generic_source; while (1) { long length; if (length) { unsigned s; do { if (ip > -5) goto _output_error; s =3D *ip++; length +=3D s; } while (s); } } _output_error: } cvise $ /home/dcb38/gcc/results.20240119.asan.ubsan/bin/gcc -c -w -O3 bug10= 01.c cvise $ /home/dcb38/gcc/results.20240119.asan.ubsan/bin/gcc -c -w -O3 -march=3Dznver3 bug1001.c bug1001.c: In function =E2=80=98LZ4_decompress_generic_endOnInput=E2=80=99: bug1001.c:2:6: error: definition in block 7 does not dominate use in block 5 2 | void LZ4_decompress_generic_endOnInput() { | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The bug first seems to exist sometime between g:484f48f03cf9a382 and g:5a22bb250d8f4ad2=