From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 9DBFC3889E33; Wed, 8 Nov 2023 00:50:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9DBFC3889E33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1699404622; bh=Jt4aNW5MryP41MNqgEYreaxtDPEzxMhvQECLVfByAuY=; h=From:To:Subject:Date:In-Reply-To:References:From; b=hQa7739McWSduGl8ZKkhNReHaAZ7MZuJrk1WSVS+iGCMySWUB61BCpkuq3ay2ecjZ AM67/IlQnP4zfPgAIxlImsOGTp2khmNmcogGw/xptrHbGmTbivOQALBNffIxsQ4RVr Wj8QmvlhYxbHqAPN3jHG6iL0bw09894LPeY1tDik= From: "sjames at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/112430] [14 Regression] ICE: verify_ssa failed, missing definition Date: Wed, 08 Nov 2023 00:50:21 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: sjames at gcc dot gnu.org X-Bugzilla-Status: NEW 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: 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=3D112430 --- Comment #2 from Sam James --- Reduced: ``` int secp256k1_scalar_reduce_512_r_0_0, secp256k1_scalar_reduce_512_m6, secp256k1_scalar_reduce_512_m9, secp256k1_scalar_reduce_512_th, secp256k1_scalar_reduce_512_tl; unsigned int secp256k1_scalar_reduce_512_c0; void secp256k1_scalar_reduce_512() { unsigned int c1, c2 =3D c1 < secp256k1_scalar_reduce_512_th; int over =3D secp256k1_scalar_reduce_512_c0 < secp256k1_scalar_reduce_512= _m9; c1 +=3D over; c2 +=3D c1 < over; secp256k1_scalar_reduce_512_c0 =3D c1; c1 =3D c2; c2 =3D secp256k1_scalar_reduce_512_c0 +=3D secp256k1_scalar_reduce_512_m6; over =3D secp256k1_scalar_reduce_512_c0 < secp256k1_scalar_reduce_512_m6; c1 +=3D over; secp256k1_scalar_reduce_512_th +=3D secp256k1_scalar_reduce_512_c0 < secp256k1_scalar_reduce_512_tl; c1 +=3D secp256k1_scalar_reduce_512_th; c2 +=3D c1 < secp256k1_scalar_reduce_512_th; secp256k1_scalar_reduce_512_r_0_0 =3D c2; } void secp256k1_ecdsa_sig_sign() { secp256k1_scalar_reduce_512(); } ```=