diff options
Diffstat (limited to 'gcc/c-lang.c')
-rw-r--r-- | gcc/c-lang.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c index 225967d..07a60d0 100644 --- a/gcc/c-lang.c +++ b/gcc/c-lang.c @@ -30,7 +30,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA static const char *c_init PARAMS ((const char *)); static void c_init_options PARAMS ((void)); -static void c_post_options PARAMS ((void)); /* ### When changing hooks, consider if ObjC needs changing too!! ### */ @@ -45,7 +44,7 @@ static void c_post_options PARAMS ((void)); #undef LANG_HOOKS_DECODE_OPTION #define LANG_HOOKS_DECODE_OPTION c_decode_option #undef LANG_HOOKS_POST_OPTIONS -#define LANG_HOOKS_POST_OPTIONS c_post_options +#define LANG_HOOKS_POST_OPTIONS c_common_post_options #undef LANG_HOOKS_GET_ALIAS_SET #define LANG_HOOKS_GET_ALIAS_SET c_common_get_alias_set #undef LANG_HOOKS_SAFE_FROM_P @@ -155,13 +154,6 @@ const char *const tree_code_name[] = { }; #undef DEFTREECODE -/* Post-switch processing. */ -static void -c_post_options () -{ - c_common_post_options (); -} - static void c_init_options () { |