Re: Encode Wnormalized= is c.opt

2014-09-09 Thread Joseph S. Myers
On Fri, 5 Sep 2014, Manuel L?pez-Ib??ez wrote: > gcc/ChangeLog: > > 2014-09-05 Manuel L?pez-Ib??ez > > * doc/invoke.texi (Wnormalized=): Update. > > libcpp/ChangeLog: > > 2014-09-05 Manuel L?pez-Ib??ez > > * include/cpplib.h (struct cpp_options): Declare warn_normalize as >

Encode Wnormalized= is c.opt

2014-09-05 Thread Manuel López-Ibáñez
This patch moves handling of Wnormalized= to c.opt. There were two quirks when doing this: 1) I cannot use the cpplib.h type 'enum cpp_normalize_level' as Type() because this will require including cpplib.h into options.h, which in turn causes a lot of problems, thus I needed to use Type(int). Si