aboutsummaryrefslogtreecommitdiff
path: root/gcc/langhooks.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r--gcc/langhooks.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h
index f57f14821ec..2a09981a2bf 100644
--- a/gcc/langhooks.h
+++ b/gcc/langhooks.h
@@ -253,6 +253,11 @@ struct lang_hooks
/* Called at the end of compilation, as a finalizer. */
void (*finish) (void);
+ /* APPLE LOCAL begin Objective-C++ */
+ /* Called at the end of the translation unit. */
+ void (*finish_file) PARAMS ((void));
+ /* APPLE LOCAL end Objective-C++ */
+
/* Parses the entire file. The argument is nonzero to cause bison
parsers to dump debugging information during parsing. */
void (*parse_file) (int);
@@ -383,6 +388,10 @@ struct lang_hooks
const struct attribute_spec *common_attribute_table;
const struct attribute_spec *format_attribute_table;
+ /* APPLE LOCAL begin kext identify vtables */
+ int (*vtable_p) (tree);
+ /* APPLE LOCAL end kext identify vtables */
+
/* Function-related language hooks. */
struct lang_hooks_for_functions function;