Turn off -Wmaybe-uninitialized when building with -Os
authorArnd Bergmann <arnd@arndb.de>
Fri, 15 Feb 2013 20:23:58 +0000 (21:23 +0100)
committerArnd Bergmann <arnd@arndb.de>
Mon, 29 Apr 2013 14:52:40 +0000 (16:52 +0200)
commite74fc973b6e531fef1fce8b101ffff05ecfb774c
treea654b1ee18ba36ff2dd1689496dac03965c92c00
parent7b2fea1ca77fdfd5154ce0f39fca3f6f335505e8
Turn off -Wmaybe-uninitialized when building with -Os

gcc-4.7 and higher add a lot of false positive warnings about
potential uses of uninitialized warnings, but only when optimizing
for size (-Os). This is the default when building allyesconfig,
which turns on CONFIG_CC_OPTIMIZE_FOR_SIZE.

In order to avoid getting a lot of patches that initialize such
variables and accidentally hide real errors along the way, let's
just turn off this warning on the respective gcc versions
when building with size optimizations. The -Wmaybe-uninitialized
option was introduced in the same gcc version (4.7) that is now
causing the false positives, so there is no effect on older compilers.

A side effect is that when building with CONFIG_CC_OPTIMIZE_FOR_SIZE,
we might now see /fewer/ warnings about possibly uninitialized
warnings than with -O2, but that is still much better than seeing
warnings known to be bogus.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Makefile