Re: [PATCH 1/1] Makefile: avoid false positive -Wmaybe-uninitialized

2022-08-10 Thread Tom Rini
On Sun, Jul 31, 2022 at 10:06:13AM +0200, Heinrich Schuchardt wrote: > When compiling with -Og gcc reports false positive -Wmaybe-uninitialized as > reported in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78394. > > Silence these warnings when building with CONFIG_CC_OPTIMIZE_FOR_DEBUG. > >

Re: [PATCH 1/1] Makefile: avoid false positive -Wmaybe-uninitialized

2022-07-31 Thread Simon Glass
On Sun, 31 Jul 2022 at 02:06, Heinrich Schuchardt wrote: > > When compiling with -Og gcc reports false positive -Wmaybe-uninitialized as > reported in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78394. > > Silence these warnings when building with CONFIG_CC_OPTIMIZE_FOR_DEBUG. > > Signed-off-by:

[PATCH 1/1] Makefile: avoid false positive -Wmaybe-uninitialized

2022-07-31 Thread Heinrich Schuchardt
When compiling with -Og gcc reports false positive -Wmaybe-uninitialized as reported in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78394. Silence these warnings when building with CONFIG_CC_OPTIMIZE_FOR_DEBUG. Signed-off-by: Heinrich Schuchardt --- Makefile | 8 +++- 1 file changed, 7