This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/36823] missing uninitialized warning (IPA, inlining)
- From: "manu at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Sat, 06 Aug 2016 18:20:16 +0000
- Subject: [Bug middle-end/36823] missing uninitialized warning (IPA, inlining)
- Auto-submitted: auto-generated
- References: <bug-36823-4@http.gcc.gnu.org/bugzilla/>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36823
Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |diagnostic
Summary|missing uninitialzied |missing uninitialized
|warning (IPA, inlining) |warning (IPA, inlining)
--- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
GCC 6.1 warns, but the location is not clear:
23 : warning: 'pp' may be used uninitialized in this function
[-Wmaybe-uninitialized]
for (p = a; p; p = p->n) if (f1 (p->b)) return 0;
^