From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C5F313858C39; Thu, 30 Sep 2021 08:32:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C5F313858C39 From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/102539] [11/12 regression] -Wmaybe-uninitialized false positive, invalid location Date: Thu, 30 Sep 2021 08:32:10 +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: 11.1.0 X-Bugzilla-Keywords: diagnostic 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: 11.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: everconfirmed target_milestone cf_reconfirmed_on bug_status component keywords 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: Thu, 30 Sep 2021 08:32:10 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D102539 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Target Milestone|--- |11.3 Last reconfirmed| |2021-09-30 Status|UNCONFIRMED |NEW Component|c |tree-optimization Keywords| |diagnostic --- Comment #2 from Andrew Pinski --- The reduced testcase does not match at all the original testcase really. Here is one which closer represents the original testcase: void msg_set_buf(const int *); void clustering_hb_event_listener_buffer_size(int a) { void* succession_buffer =3D a>16? __builtin_malloc (a) : __builtin_alloca= (a); msg_set_buf((const int*)succession_buffer); if (a>16) __builtin_free (succession_buffer); }=