diff options
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index d8c7644..5cf0f9b 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -626,7 +626,7 @@ print_inline_rtx (FILE *outf, const_rtx x, int ind) /* Call this function from the debugger to see what X looks like. */ -void +DEBUG_FUNCTION void debug_rtx (const_rtx x) { outfile = stderr; @@ -638,7 +638,7 @@ debug_rtx (const_rtx x) /* Count of rtx's to print with debug_rtx_list. This global exists because gdb user defined commands have no arguments. */ -int debug_rtx_count = 0; /* 0 is treated as equivalent to 1 */ +DEBUG_VARIABLE int debug_rtx_count = 0; /* 0 is treated as equivalent to 1 */ /* Call this function to print list from X on. @@ -646,7 +646,7 @@ int debug_rtx_count = 0; /* 0 is treated as equivalent to 1 */ rtx on. Negative values print a window around the rtx. EG: -5 prints 2 rtx's on either side (in addition to the specified rtx). */ -void +DEBUG_FUNCTION void debug_rtx_list (const_rtx x, int n) { int i,count; @@ -673,7 +673,7 @@ debug_rtx_list (const_rtx x, int n) /* Call this function to print an rtx list from START to END inclusive. */ -void +DEBUG_FUNCTION void debug_rtx_range (const_rtx start, const_rtx end) { while (1) @@ -690,7 +690,7 @@ debug_rtx_range (const_rtx start, const_rtx end) and then call debug_rtx_list to print it, using DEBUG_RTX_COUNT. The found insn is returned to enable further debugging analysis. */ -const_rtx +DEBUG_FUNCTION const_rtx debug_rtx_find (const_rtx x, int uid) { while (x != 0 && INSN_UID (x) != uid) |