From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 6201638582B1; Tue, 13 Feb 2024 16:00:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6201638582B1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1707840029; bh=T1cs6ajfHpZDTcaNv0h1KUj74tXLH/4f91ORJag+ROQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=QRYztA/UUDg7lSbyM3QTVt/Q37SUSD6P9g6sOqeBkCQnBUjFtZMRny+/2WzBWY8a6 VbnX1sWB8tLdJDuJRHDJITa3oLH0SZgreXDicFDnjtm5hVAFS78NHR5VuroXWzk0e8 LB8leEez73HvJDVE25ky3gK538fviLRpLwQXK4uE= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/113907] [14 regression] ICU miscompiled since on x86 since r14-5109-ga291237b628f41 Date: Tue, 13 Feb 2024 16:00:29 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia 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: 14.0 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=3D113907 --- Comment #21 from Andrew Pinski --- (In reply to Jakub Jelinek from comment #20) > Ah, I think it is IPA-ICF. > What happens is that fnsplit splits the uprv_copyArray{16,32,64} function= s, > where the > inline part does what is actually different among the functions, ... > Now IPA-ICF comes, doesn't care about ranges, merges all 3 into one and > picks there > the most unfortunate case, the case from the copyData64 part with N 8. > Later on we inline this back into the functions, the function splitting w= as > useless. Yep that is the same descriptions as what is happening in PR 113665.=