diff options
Diffstat (limited to 'gcc/debug.h')
-rw-r--r-- | gcc/debug.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gcc/debug.h b/gcc/debug.h index 9440515..3ac7976 100644 --- a/gcc/debug.h +++ b/gcc/debug.h @@ -93,11 +93,8 @@ struct gcc_debug_hooks void (* function_decl) (tree decl); /* Debug information for a global DECL. Called from toplev.c after - compilation proper has finished. EARLY is true if global_decl() - is being called early on in the compilation process (i.e., before - cgraph information is available and before code is - generated). */ - void (* global_decl) (tree decl, bool early); + compilation proper has finished. */ + void (* global_decl) (tree decl); /* Debug information for a type DECL. Called from toplev.c after compilation proper, also from various language front ends to @@ -159,7 +156,6 @@ extern void debug_nothing_int_charstar_int_bool (unsigned int, const char *, extern void debug_nothing_int (unsigned int); extern void debug_nothing_int_int (unsigned int, unsigned int); extern void debug_nothing_tree (tree); -extern void debug_nothing_tree_bool (tree, bool); extern void debug_nothing_tree_tree (tree, tree); extern void debug_nothing_tree_int (tree, int); extern void debug_nothing_tree_tree_tree_bool (tree, tree, tree, bool); @@ -191,8 +187,6 @@ extern void dwarf2out_switch_text_section (void); const char *remap_debug_filename (const char *); void add_debug_prefix_map (const char *); -extern void dwarf2out_early_decl (tree); - /* For -fdump-go-spec. */ extern const struct gcc_debug_hooks * |