diff options
author | davidxl <davidxl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-26 16:06:09 +0000 |
---|---|---|
committer | davidxl <davidxl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-26 16:06:09 +0000 |
commit | 8c3e8d6881fea782e6381dc2621e6da05f84ccd4 (patch) | |
tree | b94bed7986e2724eb7508e1ebf3f157968133e57 /gcc/c-family | |
parent | 129f9079a12d24650cb2ecf42e4e4cc75d05bbc3 (diff) | |
download | gcc-8c3e8d6881fea782e6381dc2621e6da05f84ccd4.tar.gz |
Implement -Wno-maybe-uninitialized
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172978 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-family')
-rw-r--r-- | gcc/c-family/c-opts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/c-family/c-opts.c b/gcc/c-family/c-opts.c index dd87591e6c8..3cd3e56ff3a 100644 --- a/gcc/c-family/c-opts.c +++ b/gcc/c-family/c-opts.c @@ -384,6 +384,7 @@ c_common_handle_option (size_t scode, const char *arg, int value, warn_unknown_pragmas = value; warn_uninitialized = value; + warn_maybe_uninitialized = value; if (!c_dialect_cxx ()) { |