* c-opts.c (COMMAND_LINE_OPTIONS): Fix -Wimplicit.

From-SVN: r58952
This commit is contained in:
Neil Booth 2002-11-09 12:37:08 +00:00 committed by Neil Booth
parent 8c47cfd82a
commit 57800e9e70
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2002-11-09 Neil Booth <neil@daikokuya.co.uk>
* c-opts.c (COMMAND_LINE_OPTIONS): Fix -Wimplicit.
2002-11-08 Dale Johannesen <dalej@apple.com>
* dbxout.c (dbxout_type): Fix stabs info for vector types.

View file

@ -148,7 +148,7 @@ static void sanitize_cpp_opts PARAMS ((void));
OPT("Wformat-y2k", CL_ALL, OPT_Wformat_y2k) \
OPT("Wformat-zero-length", CL_C, OPT_Wformat_zero_length) \
OPT("Wformat=", CL_ALL | CL_JOINED, OPT_Wformat_eq) \
OPT("Wimplicit", CL_CXX, OPT_Wimplicit) \
OPT("Wimplicit", CL_ALL, OPT_Wimplicit) \
OPT("Wimplicit-function-declaration", CL_C, OPT_Wimplicit_function_decl) \
OPT("Wimplicit-int", CL_C, OPT_Wimplicit_int) \
OPT("Wimport", CL_ALL, OPT_Wimport) \