Print cgraph_uid in function header
[official-gcc.git] / gcc-4_6-mobile-vtable-security / gcc / langhooks-def.h
blobecfa4729bc356b2b1ea31a9453ff32b8b4910e2e
1 /* Default macros to initialize the lang_hooks data structure.
2 Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Alexandre Oliva <aoliva@redhat.com>
6 This file is part of GCC.
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.
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.
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/>. */
22 #ifndef GCC_LANG_HOOKS_DEF_H
23 #define GCC_LANG_HOOKS_DEF_H
25 #include "hooks.h"
27 struct diagnostic_info;
29 /* Note to creators of new hooks:
31 The macros in this file should NOT be surrounded by a
32 #ifdef...#endif pair, since this file declares the defaults. Each
33 front end overrides any hooks it wishes to, in the file containing
34 its struct lang_hooks, AFTER including this file. */
36 /* See langhooks.h for the definition and documentation of each hook. */
38 extern void lhd_do_nothing (void);
39 extern void lhd_do_nothing_t (tree);
40 extern void lhd_do_nothing_u (unsigned);
41 extern void lhd_do_nothing_t_t (tree, tree);
42 extern int lhd_do_nothing_t_return_int (tree);
43 extern bool lhd_do_nothing_t_return_bool (tree);
44 extern int lhd_do_nothing_t_t_return_int (tree, tree);
45 extern bool lhd_do_nothing_t_vp_return_bool (tree, void *);
46 extern void lhd_do_nothing_f (struct function *);
47 extern int lhd_do_nothing_t_return_int (tree);
48 extern bool lhd_do_nothing_t_return_bool (tree);
49 extern tree lhd_do_nothing_t_t_return_null_tree (tree, tree);
50 extern tree lhd_pass_through_t (tree);
51 extern bool lhd_post_options (const char **);
52 extern alias_set_type lhd_get_alias_set (tree);
53 extern tree lhd_return_null_tree_v (void);
54 extern tree lhd_return_null_tree (tree);
55 extern tree lhd_return_null_const_tree (const_tree);
56 extern tree lhd_do_nothing_iii_return_null_tree (int, int, int);
57 extern void lhd_print_tree_nothing (FILE *, tree, int);
58 extern const char *lhd_decl_printable_name (tree, int);
59 extern const char *lhd_dwarf_name (tree, int);
60 extern int lhd_types_compatible_p (tree, tree);
61 extern void lhd_print_error_function (diagnostic_context *,
62 const char *, struct diagnostic_info *);
63 extern void lhd_set_decl_assembler_name (tree);
64 extern bool lhd_warn_unused_global_decl (const_tree);
65 extern void lhd_incomplete_type_error (const_tree, const_tree);
66 extern tree lhd_type_promotes_to (tree);
67 extern void lhd_register_builtin_type (tree, const char *);
68 extern bool lhd_decl_ok_for_sibcall (const_tree);
69 extern size_t lhd_tree_size (enum tree_code);
70 extern HOST_WIDE_INT lhd_to_target_charset (HOST_WIDE_INT);
71 extern tree lhd_expr_to_decl (tree, bool *, bool *);
72 extern tree lhd_builtin_function (tree);
73 extern bool lhd_user_conv_function_p (tree decl);
75 /* Declarations of default tree inlining hooks. */
76 extern void lhd_initialize_diagnostics (diagnostic_context *);
77 extern void lhd_init_options (unsigned int,
78 struct cl_decoded_option *);
79 extern bool lhd_complain_wrong_lang_p (const struct cl_option *);
80 extern bool lhd_handle_option (size_t, const char *, int, int, location_t,
81 const struct cl_option_handlers *);
82 extern tree lhd_callgraph_analyze_expr (tree *, int *);
85 /* Declarations for tree gimplification hooks. */
86 extern int lhd_gimplify_expr (tree *, gimple_seq *, gimple_seq *);
87 extern enum omp_clause_default_kind lhd_omp_predetermined_sharing (tree);
88 extern tree lhd_omp_assignment (tree, tree, tree);
89 struct gimplify_omp_ctx;
90 extern void lhd_omp_firstprivatize_type_sizes (struct gimplify_omp_ctx *,
91 tree);
93 #define LANG_HOOKS_NAME "GNU unknown"
94 #define LANG_HOOKS_IDENTIFIER_SIZE sizeof (struct lang_identifier)
95 #define LANG_HOOKS_INIT hook_bool_void_false
96 #define LANG_HOOKS_FINISH lhd_do_nothing
97 #define LANG_HOOKS_PARSE_FILE lhd_do_nothing
98 #define LANG_HOOKS_OPTION_LANG_MASK hook_uint_void_0
99 #define LANG_HOOKS_INIT_OPTIONS_STRUCT hook_void_gcc_optionsp
100 #define LANG_HOOKS_INIT_OPTIONS lhd_init_options
101 #define LANG_HOOKS_INITIALIZE_DIAGNOSTICS lhd_initialize_diagnostics
102 #define LANG_HOOKS_COMPLAIN_WRONG_LANG_P lhd_complain_wrong_lang_p
103 #define LANG_HOOKS_HANDLE_OPTION lhd_handle_option
104 #define LANG_HOOKS_POST_OPTIONS lhd_post_options
105 #define LANG_HOOKS_MISSING_NORETURN_OK_P hook_bool_tree_true
106 #define LANG_HOOKS_GET_ALIAS_SET lhd_get_alias_set
107 #define LANG_HOOKS_FINISH_INCOMPLETE_DECL lhd_do_nothing_t
108 #define LANG_HOOKS_DUP_LANG_SPECIFIC_DECL lhd_do_nothing_t
109 #define LANG_HOOKS_SET_DECL_ASSEMBLER_NAME lhd_set_decl_assembler_name
110 #define LANG_HOOKS_PRINT_STATISTICS lhd_do_nothing
111 #define LANG_HOOKS_PRINT_XNODE lhd_print_tree_nothing
112 #define LANG_HOOKS_PRINT_DECL lhd_print_tree_nothing
113 #define LANG_HOOKS_PRINT_TYPE lhd_print_tree_nothing
114 #define LANG_HOOKS_PRINT_IDENTIFIER lhd_print_tree_nothing
115 #define LANG_HOOKS_PRINT_ERROR_FUNCTION lhd_print_error_function
116 #define LANG_HOOKS_DECL_PRINTABLE_NAME lhd_decl_printable_name
117 #define LANG_HOOKS_DWARF_NAME lhd_dwarf_name
118 #define LANG_HOOKS_FREE_LANG_DATA lhd_do_nothing_t
119 #define LANG_HOOKS_TREE_SIZE lhd_tree_size
120 #define LANG_HOOKS_TYPES_COMPATIBLE_P lhd_types_compatible_p
121 #define LANG_HOOKS_BUILTIN_FUNCTION lhd_builtin_function
122 #define LANG_HOOKS_BUILTIN_FUNCTION_EXT_SCOPE LANG_HOOKS_BUILTIN_FUNCTION
123 #define LANG_HOOKS_USER_CONV_FUNCTION lhd_user_conv_function_p
124 #define LANG_HOOKS_EXPR_TO_DECL lhd_expr_to_decl
125 #define LANG_HOOKS_TO_TARGET_CHARSET lhd_to_target_charset
126 #define LANG_HOOKS_INIT_TS lhd_do_nothing
127 #define LANG_HOOKS_EH_PERSONALITY lhd_gcc_personality
128 #define LANG_HOOKS_EH_RUNTIME_TYPE lhd_pass_through_t
129 #define LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS NULL
130 #define LANG_HOOKS_EH_USE_CXA_END_CLEANUP false
131 #define LANG_HOOKS_DEEP_UNSHARING false
133 /* Attribute hooks. */
134 #define LANG_HOOKS_ATTRIBUTE_TABLE NULL
135 #define LANG_HOOKS_COMMON_ATTRIBUTE_TABLE NULL
136 #define LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE NULL
138 /* Tree inlining hooks. */
139 #define LANG_HOOKS_TREE_INLINING_VAR_MOD_TYPE_P \
140 hook_bool_tree_tree_false
142 #define LANG_HOOKS_TREE_INLINING_INITIALIZER { \
143 LANG_HOOKS_TREE_INLINING_VAR_MOD_TYPE_P, \
146 #define LANG_HOOKS_CALLGRAPH_ANALYZE_EXPR lhd_callgraph_analyze_expr
148 #define LANG_HOOKS_CALLGRAPH_INITIALIZER { \
149 LANG_HOOKS_CALLGRAPH_ANALYZE_EXPR \
152 /* Hooks for tree gimplification. */
153 #define LANG_HOOKS_GIMPLIFY_EXPR lhd_gimplify_expr
155 /* Hook for getting the function decl from an obj_type_ref. */
156 #define LANG_HOOKS_GET_VIRTUAL_FUNCTION_DECL lhd_do_nothing_t_t_return_null_tree
158 /* Hooks for thread safety analysis. */
159 #define LANG_HOOKS_DECL_IS_BASE_FIELD lhd_do_nothing_t_return_bool
160 #define LANG_HOOKS_DECL_IS_CONSTRUCTOR lhd_do_nothing_t_return_bool
161 #define LANG_HOOKS_DECL_IS_DESTRUCTOR lhd_do_nothing_t_return_bool
162 #define LANG_HOOKS_DECL_IS_CONST_MEMBER_FUNC lhd_do_nothing_t_return_int
164 /* Tree dump hooks. */
165 extern bool lhd_tree_dump_dump_tree (void *, tree);
166 extern int lhd_tree_dump_type_quals (const_tree);
167 extern tree lhd_make_node (enum tree_code);
169 #define LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN lhd_tree_dump_dump_tree
170 #define LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN lhd_tree_dump_type_quals
172 #define LANG_HOOKS_TREE_DUMP_INITIALIZER { \
173 LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN, \
174 LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN \
177 /* Types hooks. There are no reasonable defaults for most of them,
178 so we create a compile-time error instead. */
179 #define LANG_HOOKS_MAKE_TYPE lhd_make_node
180 #define LANG_HOOKS_CLASSIFY_RECORD NULL
181 #define LANG_HOOKS_INCOMPLETE_TYPE_ERROR lhd_incomplete_type_error
182 #define LANG_HOOKS_GENERIC_TYPE_P hook_bool_const_tree_false
183 #define LANG_HOOKS_GET_INNERMOST_GENERIC_PARMS hook_tree_const_tree_null
184 #define LANG_HOOKS_GET_INNERMOST_GENERIC_ARGS hook_tree_const_tree_null
185 #define LANG_HOOKS_FUNCTION_PARAMETER_PACK_P hook_bool_const_tree_false
186 #define LANG_HOOKS_GET_ARGUMENT_PACK_ELEMS hook_tree_const_tree_null
187 #define LANG_HOOKS_GENERIC_GENERIC_PARAMETER_DECL_P hook_bool_const_tree_false
188 #define LANG_HOOKS_FUNCTION_PARM_EXPANDED_FROM_PACK_P \
189 hook_bool_tree_tree_false
190 #define LANG_HOOKS_GET_GENERIC_FUNCTION_DECL hook_tree_const_tree_null
191 #define LANG_HOOKS_TYPE_PROMOTES_TO lhd_type_promotes_to
192 #define LANG_HOOKS_REGISTER_BUILTIN_TYPE lhd_register_builtin_type
193 #define LANG_HOOKS_TYPE_MAX_SIZE lhd_return_null_const_tree
194 #define LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES \
195 lhd_omp_firstprivatize_type_sizes
196 #define LANG_HOOKS_TYPE_HASH_EQ NULL
197 #define LANG_HOOKS_GET_ARRAY_DESCR_INFO NULL
198 #define LANG_HOOKS_GET_SUBRANGE_BOUNDS NULL
199 #define LANG_HOOKS_RECONSTRUCT_COMPLEX_TYPE reconstruct_complex_type
201 #define LANG_HOOKS_FOR_TYPES_INITIALIZER { \
202 LANG_HOOKS_MAKE_TYPE, \
203 LANG_HOOKS_CLASSIFY_RECORD, \
204 LANG_HOOKS_TYPE_FOR_MODE, \
205 LANG_HOOKS_TYPE_FOR_SIZE, \
206 LANG_HOOKS_GENERIC_TYPE_P, \
207 LANG_HOOKS_GET_ARGUMENT_PACK_ELEMS, \
208 LANG_HOOKS_TYPE_PROMOTES_TO, \
209 LANG_HOOKS_REGISTER_BUILTIN_TYPE, \
210 LANG_HOOKS_INCOMPLETE_TYPE_ERROR, \
211 LANG_HOOKS_TYPE_MAX_SIZE, \
212 LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES, \
213 LANG_HOOKS_TYPE_HASH_EQ, \
214 LANG_HOOKS_GET_ARRAY_DESCR_INFO, \
215 LANG_HOOKS_GET_SUBRANGE_BOUNDS, \
216 LANG_HOOKS_RECONSTRUCT_COMPLEX_TYPE \
219 #define LANG_HOOKS_ADD_BUILT_IN_DECL lhd_do_nothing_t
220 #define LANG_HOOKS_SAVE_BUILT_IN_PRE lhd_do_nothing
221 #define LANG_HOOKS_RESTORE_BUILT_IN_PRE lhd_do_nothing
222 #define LANG_HOOKS_SAVE_BUILT_IN_POST lhd_do_nothing
223 #define LANG_HOOKS_RESTORE_BUILT_IN_POST lhd_do_nothing
224 #define LANG_HOOKS_CLEAR_NAME_BINDINGS lhd_do_nothing_t
225 #define LANG_HOOKS_HAS_GLOBAL_NAME lhd_do_nothing_t_vp_return_bool
226 #define LANG_HOOKS_GET_LANG_DECL_SIZE lhd_do_nothing_t_return_int
227 #define LANG_HOOKS_DUP_LANG_TYPE lhd_do_nothing_t_t
228 #define LANG_HOOKS_COPY_LANG_TYPE lhd_do_nothing_t_t
229 #define LANG_HOOKS_PROCESS_PENDING_DECLS lhd_do_nothing_u
230 #define LANG_HOOKS_CLEAR_DEFFERED_FNS lhd_do_nothing
231 #define LANG_HOOKS_IS_GENERATED_TYPE lhd_do_nothing_t_return_bool
232 #define LANG_HOOKS_CMP_LANG_TYPE lhd_do_nothing_t_t_return_int
235 #define LANG_HOOKS_FOR_LIPO_INITIALIZER { \
236 LANG_HOOKS_ADD_BUILT_IN_DECL, \
237 LANG_HOOKS_SAVE_BUILT_IN_PRE, \
238 LANG_HOOKS_RESTORE_BUILT_IN_PRE, \
239 LANG_HOOKS_SAVE_BUILT_IN_POST, \
240 LANG_HOOKS_RESTORE_BUILT_IN_POST, \
241 LANG_HOOKS_CLEAR_NAME_BINDINGS, \
242 LANG_HOOKS_HAS_GLOBAL_NAME, \
243 LANG_HOOKS_GET_LANG_DECL_SIZE, \
244 LANG_HOOKS_DUP_LANG_TYPE, \
245 LANG_HOOKS_COPY_LANG_TYPE, \
246 LANG_HOOKS_PROCESS_PENDING_DECLS, \
247 LANG_HOOKS_CLEAR_DEFFERED_FNS, \
248 LANG_HOOKS_IS_GENERATED_TYPE, \
249 LANG_HOOKS_CMP_LANG_TYPE, \
252 /* Declaration hooks. */
253 #define LANG_HOOKS_GLOBAL_BINDINGS_P global_bindings_p
254 #define LANG_HOOKS_PUSHDECL pushdecl
255 #define LANG_HOOKS_GETDECLS getdecls
256 #define LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P hook_bool_tree_false
257 #define LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL lhd_warn_unused_global_decl
258 #define LANG_HOOKS_WRITE_GLOBALS write_global_declarations
259 #define LANG_HOOKS_DECL_OK_FOR_SIBCALL lhd_decl_ok_for_sibcall
260 #define LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE hook_bool_const_tree_false
261 #define LANG_HOOKS_OMP_PREDETERMINED_SHARING lhd_omp_predetermined_sharing
262 #define LANG_HOOKS_OMP_REPORT_DECL lhd_pass_through_t
263 #define LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR hook_bool_tree_bool_false
264 #define LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE hook_bool_tree_bool_false
265 #define LANG_HOOKS_OMP_PRIVATE_OUTER_REF hook_bool_tree_false
266 #define LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR hook_tree_tree_tree_tree_null
267 #define LANG_HOOKS_OMP_CLAUSE_COPY_CTOR lhd_omp_assignment
268 #define LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP lhd_omp_assignment
269 #define LANG_HOOKS_OMP_CLAUSE_DTOR hook_tree_tree_tree_null
270 #define LANG_HOOKS_OMP_FINISH_CLAUSE hook_void_tree
272 #define LANG_HOOKS_DECLS { \
273 LANG_HOOKS_GLOBAL_BINDINGS_P, \
274 LANG_HOOKS_PUSHDECL, \
275 LANG_HOOKS_GETDECLS, \
276 LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P, \
277 LANG_HOOKS_GENERIC_GENERIC_PARAMETER_DECL_P, \
278 LANG_HOOKS_FUNCTION_PARM_EXPANDED_FROM_PACK_P, \
279 LANG_HOOKS_GET_GENERIC_FUNCTION_DECL, \
280 LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL, \
281 LANG_HOOKS_WRITE_GLOBALS, \
282 LANG_HOOKS_DECL_OK_FOR_SIBCALL, \
283 LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE, \
284 LANG_HOOKS_OMP_PREDETERMINED_SHARING, \
285 LANG_HOOKS_OMP_REPORT_DECL, \
286 LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR, \
287 LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE, \
288 LANG_HOOKS_OMP_PRIVATE_OUTER_REF, \
289 LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR, \
290 LANG_HOOKS_OMP_CLAUSE_COPY_CTOR, \
291 LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP, \
292 LANG_HOOKS_OMP_CLAUSE_DTOR, \
293 LANG_HOOKS_OMP_FINISH_CLAUSE \
296 /* LTO hooks. */
297 extern void lhd_begin_section (const char *);
298 extern void lhd_append_data (const void *, size_t, void *);
299 extern void lhd_end_section (void);
301 #define LANG_HOOKS_BEGIN_SECTION lhd_begin_section
302 #define LANG_HOOKS_APPEND_DATA lhd_append_data
303 #define LANG_HOOKS_END_SECTION lhd_end_section
305 #define LANG_HOOKS_LTO { \
306 LANG_HOOKS_BEGIN_SECTION, \
307 LANG_HOOKS_APPEND_DATA, \
308 LANG_HOOKS_END_SECTION \
311 /* The whole thing. The structure is defined in langhooks.h. */
312 #define LANG_HOOKS_INITIALIZER { \
313 LANG_HOOKS_NAME, \
314 LANG_HOOKS_IDENTIFIER_SIZE, \
315 LANG_HOOKS_FREE_LANG_DATA, \
316 LANG_HOOKS_TREE_SIZE, \
317 LANG_HOOKS_OPTION_LANG_MASK, \
318 LANG_HOOKS_INIT_OPTIONS_STRUCT, \
319 LANG_HOOKS_INIT_OPTIONS, \
320 LANG_HOOKS_INITIALIZE_DIAGNOSTICS, \
321 LANG_HOOKS_COMPLAIN_WRONG_LANG_P, \
322 LANG_HOOKS_HANDLE_OPTION, \
323 LANG_HOOKS_POST_OPTIONS, \
324 LANG_HOOKS_INIT, \
325 LANG_HOOKS_FINISH, \
326 LANG_HOOKS_PARSE_FILE, \
327 LANG_HOOKS_MISSING_NORETURN_OK_P, \
328 LANG_HOOKS_GET_ALIAS_SET, \
329 LANG_HOOKS_FINISH_INCOMPLETE_DECL, \
330 LANG_HOOKS_DUP_LANG_SPECIFIC_DECL, \
331 LANG_HOOKS_SET_DECL_ASSEMBLER_NAME, \
332 LANG_HOOKS_PRINT_STATISTICS, \
333 LANG_HOOKS_PRINT_XNODE, \
334 LANG_HOOKS_PRINT_DECL, \
335 LANG_HOOKS_PRINT_TYPE, \
336 LANG_HOOKS_PRINT_IDENTIFIER, \
337 LANG_HOOKS_DECL_PRINTABLE_NAME, \
338 LANG_HOOKS_DWARF_NAME, \
339 LANG_HOOKS_TYPES_COMPATIBLE_P, \
340 LANG_HOOKS_PRINT_ERROR_FUNCTION, \
341 LANG_HOOKS_TO_TARGET_CHARSET, \
342 LANG_HOOKS_ATTRIBUTE_TABLE, \
343 LANG_HOOKS_COMMON_ATTRIBUTE_TABLE, \
344 LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE, \
345 LANG_HOOKS_TREE_INLINING_INITIALIZER, \
346 LANG_HOOKS_CALLGRAPH_INITIALIZER, \
347 LANG_HOOKS_TREE_DUMP_INITIALIZER, \
348 LANG_HOOKS_DECLS, \
349 LANG_HOOKS_FOR_TYPES_INITIALIZER, \
350 LANG_HOOKS_FOR_LIPO_INITIALIZER, \
351 LANG_HOOKS_LTO, \
352 LANG_HOOKS_GET_INNERMOST_GENERIC_PARMS, \
353 LANG_HOOKS_GET_INNERMOST_GENERIC_ARGS, \
354 LANG_HOOKS_FUNCTION_PARAMETER_PACK_P, \
355 LANG_HOOKS_GIMPLIFY_EXPR, \
356 LANG_HOOKS_GET_VIRTUAL_FUNCTION_DECL, \
357 LANG_HOOKS_DECL_IS_BASE_FIELD, \
358 LANG_HOOKS_DECL_IS_CONSTRUCTOR, \
359 LANG_HOOKS_DECL_IS_DESTRUCTOR, \
360 LANG_HOOKS_DECL_IS_CONST_MEMBER_FUNC, \
361 LANG_HOOKS_BUILTIN_FUNCTION, \
362 LANG_HOOKS_BUILTIN_FUNCTION_EXT_SCOPE, \
363 LANG_HOOKS_USER_CONV_FUNCTION, \
364 LANG_HOOKS_INIT_TS, \
365 LANG_HOOKS_EXPR_TO_DECL, \
366 LANG_HOOKS_EH_PERSONALITY, \
367 LANG_HOOKS_EH_RUNTIME_TYPE, \
368 LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS, \
369 LANG_HOOKS_EH_USE_CXA_END_CLEANUP, \
370 LANG_HOOKS_DEEP_UNSHARING \
373 #endif /* GCC_LANG_HOOKS_DEF_H */