diff options
Diffstat (limited to 'gcc/objc/objc-act.c')
-rw-r--r-- | gcc/objc/objc-act.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 99f2d23..06b0e8c 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -148,6 +148,7 @@ char *util_firstobj; static void init_objc PARAMS ((void)); static void finish_objc PARAMS ((void)); +static void objc_post_options PARAMS ((void)); /* Code generation. */ @@ -626,6 +627,15 @@ static int generating_instance_variables = 0; static int print_struct_values = 0; +/* Each front end provides its own. */ +struct lang_hooks lang_hooks = {objc_post_options}; + +/* Post-switch processing. */ +static void +objc_post_options () +{ +} + /* Some platforms pass small structures through registers versus through an invisible pointer. Determine at what size structure is the transition point between the two possibilities. */ |