OSDN Git Service

* unwind-dw2-fde.c (__deregister_frame_info_bases):
[pf3gnuchains/gcc-fork.git] / gcc / debug.c
index 4e525d5..05811a9 100644 (file)
@@ -28,8 +28,9 @@ struct gcc_debug_hooks do_nothing_debug_hooks =
   debug_nothing_int_charstar,
   debug_nothing_int_charstar,
   debug_nothing_int,
-  debug_nothing_int_int,
-  debug_nothing_int_int,
+  debug_nothing_int_int,       /* begin_block */
+  debug_nothing_int_int,       /* end_block */
+  debug_true_tree,             /* ignore_block */
   debug_nothing_int_charstar,  /* source_line */
   debug_nothing_int_charstar,  /* begin_prologue */
   debug_nothing_int,           /* end_prologue */
@@ -38,7 +39,9 @@ struct gcc_debug_hooks do_nothing_debug_hooks =
   debug_nothing_int,           /* end_function */
   debug_nothing_tree,          /* function_decl */
   debug_nothing_tree,          /* global_decl */
-  debug_nothing_tree           /* deferred_inline_function */
+  debug_nothing_tree,          /* deferred_inline_function */
+  debug_nothing_tree,          /* outlining_inline_function */
+  debug_nothing_rtx            /* label */
 };
 
 /* This file contains implementations of each debug hook that do
@@ -55,6 +58,19 @@ debug_nothing_tree (decl)
 {
 }
 
+bool
+debug_true_tree (block)
+     union tree_node *block ATTRIBUTE_UNUSED;
+{
+  return true;
+}
+
+void
+debug_nothing_rtx (insn)
+     struct rtx_def *insn ATTRIBUTE_UNUSED;
+{
+}
+
 void
 debug_nothing_charstar (main_filename)
      const char *main_filename ATTRIBUTE_UNUSED;