From 1ef33fd4cd139a24524f0cd41b07ea9526dfacc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20L=C3=B3pez-Ib=C3=A1=C3=B1ez?= Date: Tue, 9 Sep 2014 21:41:43 +0000 Subject: invoke.texi (Wnormalized=): Update. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit gcc/ChangeLog: 2014-09-09 Manuel López-Ibáñez * doc/invoke.texi (Wnormalized=): Update. libcpp/ChangeLog: 2014-09-09 Manuel López-Ibáñez * 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 * 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 * gcc.dg/cpp/warn-normalized-3.c: Delete useless dg-prune-output. From-SVN: r215093 --- libcpp/ChangeLog | 5 +++++ libcpp/include/cpplib.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'libcpp') diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 890b7fc..d986119 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,8 @@ +2014-09-09 Manuel López-Ibáñez + + * include/cpplib.h (struct cpp_options): Declare warn_normalize as + int instead of enum. + 2014-09-04 Manuel López-Ibáñez * macro.c (replace_args): Use cpp_pedwarning, cpp_warning and 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; -- cgit v1.1