00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include "config.h"
00023 #include "system.h"
00024 #ifdef SGI_MONGOOSE
00025
00026 #include "rtl.h"
00027 #endif
00028 #include "debug.h"
00029
00030
00031 const struct gcc_debug_hooks do_nothing_debug_hooks =
00032 {
00033 debug_nothing_charstar,
00034 debug_nothing_charstar,
00035 debug_nothing_int_charstar,
00036 debug_nothing_int_charstar,
00037 debug_nothing_int_charstar,
00038 debug_nothing_int,
00039 debug_nothing_int_int,
00040 debug_nothing_int_int,
00041 debug_true_tree,
00042 debug_nothing_int_charstar,
00043 debug_nothing_int_charstar,
00044 debug_nothing_int_charstar,
00045 debug_nothing_int_charstar,
00046 debug_nothing_tree,
00047 debug_nothing_int,
00048 debug_nothing_tree,
00049 debug_nothing_tree,
00050 debug_nothing_tree,
00051 debug_nothing_tree,
00052 debug_nothing_rtx
00053 };
00054
00055
00056
00057
00058 void
00059 debug_nothing_void ()
00060 {
00061 }
00062
00063 void
00064 debug_nothing_tree (decl)
00065 tree decl ATTRIBUTE_UNUSED;
00066 {
00067 }
00068
00069 bool
00070 debug_true_tree (block)
00071 tree block ATTRIBUTE_UNUSED;
00072 {
00073 return true;
00074 }
00075
00076 void
00077 debug_nothing_rtx (insn)
00078 rtx insn ATTRIBUTE_UNUSED;
00079 {
00080 }
00081
00082 void
00083 debug_nothing_charstar (main_filename)
00084 const char *main_filename ATTRIBUTE_UNUSED;
00085 {
00086 }
00087
00088 void
00089 debug_nothing_int_charstar (line, text)
00090 unsigned int line ATTRIBUTE_UNUSED;
00091 const char *text ATTRIBUTE_UNUSED;
00092 {
00093 }
00094
00095 void
00096 debug_nothing_int (line)
00097 unsigned int line ATTRIBUTE_UNUSED;
00098 {
00099 }
00100
00101 void
00102 debug_nothing_int_int (line, n)
00103 unsigned int line ATTRIBUTE_UNUSED;
00104 unsigned int n ATTRIBUTE_UNUSED;
00105 {
00106 }