Re: [PATCH] document -Wuninitialized for allocated objects

2020-09-16 Thread Jeff Law via Gcc-patches
On 9/15/20 11:06 AM, Martin Sebor via Gcc-patches wrote: > The attached patch updates the manual to mention that Wuninitialized > and -Wmaybe-uninitialized are issued for both auto and allocated > objects, as well as for passing pointers to uninitialized objects > to const-qualified parameters.  B

[PATCH] document -Wuninitialized for allocated objects

2020-09-15 Thread Martin Sebor via Gcc-patches
The attached patch updates the manual to mention that Wuninitialized and -Wmaybe-uninitialized are issued for both auto and allocated objects, as well as for passing pointers to uninitialized objects to const-qualified parameters. Both of these features are GCC 11 enhancements. Martin Document -