X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fc-opts.c;h=a637ffc70c5cb9ff3aa387c9031913b4494159f6;hb=5efd9b45c3936d9707b975a0a3145a9e1aa8faeb;hp=a41362a9829a26dbd61f5522eb7cc14ace3a8d53;hpb=e297ac285850d36c48ba476e478838f9b0276960;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/c-opts.c b/gcc/c-opts.c index a41362a9829..a637ffc70c5 100644 --- a/gcc/c-opts.c +++ b/gcc/c-opts.c @@ -7,7 +7,7 @@ This file is part of GCC. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free -Software Foundation; either version 2, or (at your option) any later +Software Foundation; either version 3, or (at your option) any later version. GCC is distributed in the hope that it will be useful, but WITHOUT ANY @@ -16,9 +16,8 @@ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with GCC; see the file COPYING. If not, write to the Free -Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA -02110-1301, USA. */ +along with GCC; see the file COPYING3. If not see +. */ #include "config.h" #include "system.h" @@ -232,6 +231,9 @@ c_common_init_options (unsigned int argc, const char **argv) warn_pointer_arith = c_dialect_cxx (); warn_write_strings = c_dialect_cxx(); + /* By default, C99-like requirements for complex multiply and divide. */ + flag_complex_method = 2; + deferred_opts = XNEWVEC (struct deferred_opt, argc); result = lang_flags[c_language]; @@ -400,7 +402,7 @@ c_common_handle_option (size_t scode, const char *arg, int value) if (c_dialect_cxx ()) warn_sign_compare = value; warn_switch = value; - warn_strict_aliasing = value; + set_Wstrict_aliasing (value); warn_address = value; warn_strict_overflow = value; warn_array_bounds = value; @@ -616,6 +618,10 @@ c_common_handle_option (size_t scode, const char *arg, int value) disable_builtin_function (arg); break; + case OPT_fdirectives_only: + cpp_opts->directives_only = 1; + break; + case OPT_fdollars_in_identifiers: cpp_opts->dollars_in_ident = value; break; @@ -1059,10 +1065,13 @@ c_common_post_options (const char **pfilename) if (flag_objc_exceptions && !flag_objc_sjlj_exceptions) flag_exceptions = 1; - /* -Wextra implies -Wclobbered, -Wempty-body, -Wsign-compare, + /* -Wextra implies -Wtype-limits, -Wclobbered, + -Wempty-body, -Wsign-compare, -Wmissing-field-initializers, -Wmissing-parameter-type -Wold-style-declaration, and -Woverride-init, but not if explicitly overridden. */ + if (warn_type_limits == -1) + warn_type_limits = extra_warnings; if (warn_clobbered == -1) warn_clobbered = extra_warnings; if (warn_empty_body == -1) @@ -1104,7 +1113,14 @@ c_common_post_options (const char **pfilename) } if (flag_inline_functions) flag_inline_trees = 2; - } + } + + /* In C, -Wconversion enables -Wsign-conversion (unless disabled + through -Wno-sign-conversion). While in C++, + -Wsign-conversion needs to be requested explicitly. */ + if (warn_sign_conversion == -1) + warn_sign_conversion = (c_dialect_cxx ()) ? 0 : warn_conversion; + /* Special format checking options don't work without -Wformat; warn if they are used. */ @@ -1128,14 +1144,9 @@ c_common_post_options (const char **pfilename) if (warn_implicit_function_declaration == -1) warn_implicit_function_declaration = flag_isoc99; - /* C99 requires special handling of complex multiplication and division; - -ffast-math and -fcx-limited-range are handled in process_options. */ - if (flag_isoc99) - flag_complex_method = 2; - /* If we're allowing C++0x constructs, don't warn about C++0x compatibility problems. */ - if (flag_cpp0x) + if (cxx_dialect == cxx0x) warn_cxx0x_compat = 0; if (flag_preprocess_only) @@ -1399,6 +1410,11 @@ sanitize_cpp_opts (void) if (flag_dump_macros == 'M') flag_no_output = 1; + /* By default, -fdirectives-only implies -dD. This allows subsequent phases + to perform proper macro expansion. */ + if (cpp_opts->directives_only && !cpp_opts->preprocessed && !flag_dump_macros) + flag_dump_macros = 'D'; + /* Disable -dD, -dN and -dI if normal output is suppressed. Allow -dM since at least glibc relies on -M -dM to work. */ /* Also, flag_no_output implies flag_no_line_commands, always. */ @@ -1429,6 +1445,14 @@ sanitize_cpp_opts (void) actually output the current directory? */ if (flag_working_directory == -1) flag_working_directory = (debug_info_level != DINFO_LEVEL_NONE); + + if (cpp_opts->directives_only) + { + if (warn_unused_macros) + error ("-fdirectives-only is incompatible with -Wunused_macros"); + if (cpp_opts->traditional) + error ("-fdirectives-only is incompatible with -traditional"); + } } /* Add include path with a prefix at the front of its name. */ @@ -1512,6 +1536,8 @@ finish_options (void) } } } + else if (cpp_opts->directives_only) + cpp_init_special_builtins (parse_in); include_cursor = 0; push_command_line_include (); @@ -1600,6 +1626,7 @@ set_std_cxx98 (int iso) flag_no_gnu_keywords = iso; flag_no_nonansi_builtin = iso; flag_iso = iso; + cxx_dialect = cxx98; } /* Set the C++ 0x working draft "standard" (without GNU extensions if ISO). */ @@ -1610,7 +1637,7 @@ set_std_cxx0x (int iso) flag_no_gnu_keywords = iso; flag_no_nonansi_builtin = iso; flag_iso = iso; - flag_cpp0x = 1; + cxx_dialect = cxx0x; } /* Handle setting implicit to ON. */