diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2014-09-09 21:41:43 +0000 |
---|---|---|
committer | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2014-09-09 21:41:43 +0000 |
commit | 1ef33fd4cd139a24524f0cd41b07ea9526dfacc5 (patch) | |
tree | b7149e4369f374e9f99892f05766f1f5473cbcd6 /libcpp/include/cpplib.h | |
parent | 00c7a3c72adce967dc14999e14d166437dbb9f2d (diff) | |
download | gcc-1ef33fd4cd139a24524f0cd41b07ea9526dfacc5.zip gcc-1ef33fd4cd139a24524f0cd41b07ea9526dfacc5.tar.gz gcc-1ef33fd4cd139a24524f0cd41b07ea9526dfacc5.tar.bz2 |
invoke.texi (Wnormalized=): Update.
gcc/ChangeLog:
2014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
* doc/invoke.texi (Wnormalized=): Update.
libcpp/ChangeLog:
2014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
* include/cpplib.h (struct cpp_options): Declare warn_normalize as
int instead of enum.
gcc/c-family/ChangeLog:
2014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
* c.opt (Wnormalized): New.
(Wnormalized=): Use Enum and Reject Negative.
* c-opts.c (c_common_handle_option): Do not handle Wnormalized here.
gcc/testsuite/ChangeLog:
2014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
* gcc.dg/cpp/warn-normalized-3.c: Delete useless dg-prune-output.
From-SVN: r215093
Diffstat (limited to 'libcpp/include/cpplib.h')
-rw-r--r-- | libcpp/include/cpplib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcpp/include/cpplib.h b/libcpp/include/cpplib.h index 28cb495..62d271b 100644 --- a/libcpp/include/cpplib.h +++ b/libcpp/include/cpplib.h @@ -457,8 +457,8 @@ struct cpp_options const char *input_charset; /* The minimum permitted level of normalization before a warning - is generated. */ - enum cpp_normalize_level warn_normalize; + is generated. See enum cpp_normalize_level. */ + int warn_normalize; /* True to warn about precompiled header files we couldn't use. */ bool warn_invalid_pch; |