diff options
Diffstat (limited to 'gcc/print-rtl.c')
-rw-r--r-- | gcc/print-rtl.c | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/gcc/print-rtl.c b/gcc/print-rtl.c index 66f0a01..51dc65a 100644 --- a/gcc/print-rtl.c +++ b/gcc/print-rtl.c @@ -60,9 +60,6 @@ int flag_simple = 0; /* Nonzero if we are dumping graphical description. */ int dump_for_graph; -/* Nonzero to dump all call_placeholder alternatives. */ -static int debug_call_placeholder_verbose; - void print_mem_expr (FILE *outfile, tree expr) { @@ -99,7 +96,6 @@ print_rtx (rtx in_rtx) int j; const char *format_ptr; int is_insn; - rtx tem; if (sawclose) { @@ -573,49 +569,6 @@ print_rtx (rtx in_rtx) } break; - case CALL_PLACEHOLDER: - if (debug_call_placeholder_verbose) - { - fputs (" (cond [\n (const_string \"normal\") (sequence [", outfile); - for (tem = XEXP (in_rtx, 0); tem != 0; tem = NEXT_INSN (tem)) - { - fputs ("\n ", outfile); - print_inline_rtx (outfile, tem, 4); - } - - tem = XEXP (in_rtx, 1); - if (tem) - fputs ("\n ])\n (const_string \"tail_call\") (sequence [", - outfile); - for (; tem != 0; tem = NEXT_INSN (tem)) - { - fputs ("\n ", outfile); - print_inline_rtx (outfile, tem, 4); - } - - tem = XEXP (in_rtx, 2); - if (tem) - fputs ("\n ])\n (const_string \"tail_recursion\") (sequence [", - outfile); - for (; tem != 0; tem = NEXT_INSN (tem)) - { - fputs ("\n ", outfile); - print_inline_rtx (outfile, tem, 4); - } - - fputs ("\n ])\n ])", outfile); - break; - } - - for (tem = XEXP (in_rtx, 0); tem != 0; tem = NEXT_INSN (tem)) - if (GET_CODE (tem) == CALL_INSN) - { - fprintf (outfile, " "); - print_rtx (tem); - break; - } - break; - default: break; } |