diff options
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 6544694..63a6837 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -240,8 +240,7 @@ typedef enum c_language_kind { clk_c, /* A dialect of C: K&R C, ANSI/ISO C89, C2000, etc. */ - clk_cplusplus, /* ANSI/ISO C++ */ - clk_objective_c /* Objective C */ + clk_cplusplus /* ANSI/ISO C++ */ } c_language_kind; @@ -367,7 +366,6 @@ struct c_lang_decl GTY(()) { extern c_language_kind c_language; - /* Switches common to the C front ends. */ /* Nonzero if prepreprocessing only. */ @@ -377,6 +375,9 @@ extern int flag_preprocess_only; user's namespace. */ extern int flag_iso; +/* Nonzero whenever Objective-C functionality is being used. */ +extern int flag_objc; + /* Nonzero if -undef was given. It suppresses target built-in macros and assertions. */ extern int flag_undef; @@ -794,9 +795,6 @@ extern int warn_deprecated; extern int max_tinst_depth; - - - /* C types are partitioned into three subsets: object, function, and incomplete types. */ #define C_TYPE_OBJECT_P(type) \ |