Import gcc-4.7.2 to new vendor branch
[dragonfly.git] / contrib / gcc-4.7 / gcc / objc / objc-lang.c
1 /* Language-dependent hooks for Objective-C.
2    Copyright 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2010, 2011
3    Free Software Foundation, Inc.
4    Contributed by Ziemowit Laski  <zlaski@apple.com>
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "c-tree.h"
29 #include "c-family/c-common.h"
30 #include "c-family/c-objc.h"
31 #include "ggc.h"
32 #include "objc-act.h"
33 #include "langhooks.h"
34 #include "langhooks-def.h"
35 #include "c-objc-common.h"
36 #include "c-lang.h"
37
38 enum c_language_kind c_language = clk_objc;
39
40 /* Lang hooks common to C and ObjC are declared in c-objc-common.h;
41    consequently, there should be very few hooks below.  */
42
43 #undef LANG_HOOKS_NAME
44 #define LANG_HOOKS_NAME "GNU Objective-C"
45 #undef LANG_HOOKS_INIT
46 #define LANG_HOOKS_INIT objc_init
47 #undef LANG_HOOKS_DECL_PRINTABLE_NAME
48 #define LANG_HOOKS_DECL_PRINTABLE_NAME objc_printable_name
49 #undef LANG_HOOKS_GIMPLIFY_EXPR
50 #define LANG_HOOKS_GIMPLIFY_EXPR objc_gimplify_expr
51 #undef LANG_HOOKS_INIT_TS
52 #define LANG_HOOKS_INIT_TS objc_common_init_ts
53
54 /* Each front end provides its own lang hook initializer.  */
55 struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
56
57 /* Lang hook routines common to C and ObjC appear in c-objc-common.c;
58    there should be very few (if any) routines below.  */
59
60 #include "gtype-objc.h"