Makefile.in (integrate.o): Add debug.h.
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>
Sun, 15 Jul 2001 16:50:41 +0000 (16:50 +0000)
committerRichard Kenner <kenner@gcc.gnu.org>
Sun, 15 Jul 2001 16:50:41 +0000 (12:50 -0400)
* Makefile.in (integrate.o): Add debug.h.
* integrate.c (debug.h): Add.
(output_inline_function): Save, reset, and restore debug_hooks.

From-SVN: r44026

gcc/ChangeLog
gcc/Makefile.in
gcc/integrate.c

index 4ff9680953e7fd6a21da31bd5fd31f287ef8ded2..0246e85aa20feedaa2ff1342cb125127e8865262 100644 (file)
@@ -1,3 +1,9 @@
+Sun Jul 15 12:53:51 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
+
+       * Makefile.in (integrate.o): Add debug.h.
+       * integrate.c (debug.h): Add.
+       (output_inline_function): Save, reset, and restore debug_hooks.
+
 2001-07-15  Richard Henderson  <rth@redhat.com>
 
        * config/alpha/alpha.c (alpha_emit_xfloating_compare): Use CCmode
index a03f77f19dc5824422ac3033ab1bc1f007ee1cd7..4fcba9bab0bdf78a14fd6714c76bfda57c2754c7 100644 (file)
@@ -1417,7 +1417,7 @@ emit-rtl.o : emit-rtl.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
    $(HASHTAB_H) $(TM_P_H)
 real.o : real.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) toplev.h $(TM_P_H)
 integrate.o : integrate.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
-   $(INTEGRATE_H) insn-config.h $(EXPR_H) real.h $(REGS_H) \
+   debug.h $(INTEGRATE_H) insn-config.h $(EXPR_H) real.h $(REGS_H) \
    intl.h function.h output.h $(RECOG_H) except.h toplev.h $(LOOP_H) \
    $(PARAMS_H) $(TM_P_H)
 jump.o : jump.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h hard-reg-set.h $(REGS_H) \
index 88b8c9f1f88a1dd0e495598d416b3ada5a3bb969..bcb65e826a3e1e5d18311cc68258c96786e83c10 100644 (file)
@@ -28,6 +28,7 @@ Boston, MA 02111-1307, USA.  */
 #include "tm_p.h"
 #include "regs.h"
 #include "flags.h"
+#include "debug.h"
 #include "insn-config.h"
 #include "expr.h"
 #include "output.h"
@@ -2866,6 +2867,7 @@ output_inline_function (fndecl)
 {
   struct function *old_cfun = cfun;
   enum debug_info_type old_write_symbols = write_symbols;
+  struct debug_hooks *old_debug_hooks = debug_hooks;
   struct function *f = DECL_SAVED_INSNS (fndecl);
 
   cfun = f;
@@ -2879,7 +2881,10 @@ output_inline_function (fndecl)
 
   /* If requested, suppress debugging information.  */
   if (f->no_debugging_symbols)
-    write_symbols = NO_DEBUG;
+    {
+      write_symbols = NO_DEBUG;
+      debug_hooks = &do_nothing_debug_hooks;
+    }
 
   /* Do any preparation, such as emitting abstract debug info for the inline
      before it gets mangled by optimization.  */
@@ -2895,6 +2900,7 @@ output_inline_function (fndecl)
   cfun = old_cfun;
   current_function_decl = old_cfun ? old_cfun->decl : 0;
   write_symbols = old_write_symbols;
+  debug_hooks = old_debug_hooks;
 }
 
 \f