From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 00B803858036; Tue, 5 Oct 2021 22:21:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 00B803858036 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/102622] [12 Regression] Wrong code with -O3 for skylake-avx512 and icelake-server Date: Tue, 05 Oct 2021 22:21:04 +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: 12.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia 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: 12.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: everconfirmed short_desc cf_reconfirmed_on target_milestone bug_status 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Oct 2021 22:21:05 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D102622 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Summary|Wrong code with -O3 for |[12 Regression] Wrong code |skylake-avx512 and |with -O3 for skylake-avx512 |icelake-server |and icelake-server Last reconfirmed| |2021-10-05 Target Milestone|--- |12.0 Status|UNCONFIRMED |NEW --- Comment #1 from Andrew Pinski --- reduced to one file: static inline const unsigned &max1(const unsigned &t, const unsigned &t1) { return t > t1 ? t : t1; } long long int c =3D 42; int var_20 =3D 0; int var_22 =3D 0; short arr_32 [13]; char arr_45 [69]; void test(int a, unsigned b, long long *c) __attribute__((noipa)); void test(int a, unsigned b, long long *c) { for (short d =3D 0; d < 13; d++) { for (int e =3D 0; e < a; e +=3D 3) var_20 =3D 0; if (max1(b, unsigned((short)b))) { arr_32[d] =3D 0; var_22 =3D *c; } for (unsigned f =3D 0; f < 69; f +=3D 4) arr_45[f] =3D 0; } } int main() { test(-545750584, 1144022456U, &c); if (var_22 !=3D 42) __builtin_abort(); return 0; } Confirmed.=