diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-07-27 15:43:31 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2010-07-27 15:43:31 +0100 |
commit | 61ff2bdc6c2bc3f08a5e45aeb57e48ec21604e0a (patch) | |
tree | 8827f91fc9b3f24a4fdd5c851a07702213bfc0c3 /gcc/c-objc-common.h | |
parent | 4e98bcaf2984720ac9be21d344e0240b3db6da07 (diff) | |
download | gcc-61ff2bdc6c2bc3f08a5e45aeb57e48ec21604e0a.zip gcc-61ff2bdc6c2bc3f08a5e45aeb57e48ec21604e0a.tar.gz gcc-61ff2bdc6c2bc3f08a5e45aeb57e48ec21604e0a.tar.bz2 |
common.opt (o): Add MissingArgError.
* common.opt (o): Add MissingArgError.
* doc/options.texi (MissingArgError): Document.
* hooks.c (hook_bool_constcharptr_size_t_false): Remove.
* hooks.h (hook_bool_constcharptr_size_t_false): Remove.
* langhooks-def.h (LANG_HOOKS_MISSING_ARGUMENT): Remove.
(LANG_HOOKS_INITIALIZER): Remove missing_argument hook
initializer.
* langhooks.h (struct lang_hooks): Remove missing_argument.
* optc-gen.awk: Handle MissingArgError and output new structure
field initializers.
* opts.c (read_cmdline_option): Use missing_argument_error field
instead of missing_argument langhook.
* opts.h (struct cl_option): Add missing_argument_error field.
* system.h (LANG_HOOKS_MISSING_ARGUMENT): Poison.
c-family:
* c-common.h (c_common_missing_argument): Remove.
* c-opts.c (c_common_missing_argument): Remove.
* c.opt (A, D, F, I, MD, MMD, MQ, MT, U, fconstant-string-class=,
idirafter, imacros, include, isysroot, isystem, iquote): Add
MissingArgError.
* c-objc-common.h (LANG_HOOKS_MISSING_ARGUMENT): Remove.
cp:
* cp-objcp-common.h (LANG_HOOKS_MISSING_ARGUMENT): Remove.
po:
* exgettext: Also extract MissingArgError texts from .opt files.
From-SVN: r162571
Diffstat (limited to 'gcc/c-objc-common.h')
-rw-r--r-- | gcc/c-objc-common.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/c-objc-common.h b/gcc/c-objc-common.h index c2b5ffa..4bc5bb3 100644 --- a/gcc/c-objc-common.h +++ b/gcc/c-objc-common.h @@ -39,8 +39,6 @@ along with GCC; see the file COPYING3. If not see #define LANG_HOOKS_INITIALIZE_DIAGNOSTICS c_initialize_diagnostics #undef LANG_HOOKS_HANDLE_OPTION #define LANG_HOOKS_HANDLE_OPTION c_common_handle_option -#undef LANG_HOOKS_MISSING_ARGUMENT -#define LANG_HOOKS_MISSING_ARGUMENT c_common_missing_argument #undef LANG_HOOKS_POST_OPTIONS #define LANG_HOOKS_POST_OPTIONS c_common_post_options #undef LANG_HOOKS_GET_ALIAS_SET |