Commit 92877928 by Jeff Law Committed by Jeff Law

rl78.c (move_elim_pass): Use TDF_NONE rather than integer 0 for argument to print_rtl_with_bb.

        * config/rl78/rl78.c (move_elim_pass): Use TDF_NONE rather than
        integer 0 for argument to print_rtl_with_bb.
        (rl78_reorg): Likewise.

From-SVN: r261552
parent 0be606d3
2018-06-13 Jeff Law <law@redhat.com>
* config/rl78/rl78.c (move_elim_pass): Use TDF_NONE rather than
integer 0 for argument to print_rtl_with_bb.
(rl78_reorg): Likewise.
2018-06-13 David Malcolm <dmalcolm@redhat.com> 2018-06-13 David Malcolm <dmalcolm@redhat.com>
* config/arc/arc.c (hwloop_optimize): Strengthen local "end_label" * config/arc/arc.c (hwloop_optimize): Strengthen local "end_label"
......
...@@ -228,7 +228,7 @@ move_elim_pass (void) ...@@ -228,7 +228,7 @@ move_elim_pass (void)
} }
if (dump_file) if (dump_file)
print_rtl_with_bb (dump_file, get_insns (), 0); print_rtl_with_bb (dump_file, get_insns (), TDF_NONE);
return 0; return 0;
} }
...@@ -4317,7 +4317,7 @@ rl78_reorg (void) ...@@ -4317,7 +4317,7 @@ rl78_reorg (void)
if (dump_file) if (dump_file)
{ {
fprintf (dump_file, "\n================DEVIRT:=AFTER=ALLOC=PHYSICAL=REGISTERS================\n"); fprintf (dump_file, "\n================DEVIRT:=AFTER=ALLOC=PHYSICAL=REGISTERS================\n");
print_rtl_with_bb (dump_file, get_insns (), 0); print_rtl_with_bb (dump_file, get_insns (), TDF_NONE);
} }
rl78_propogate_register_origins (); rl78_propogate_register_origins ();
...@@ -4326,7 +4326,7 @@ rl78_reorg (void) ...@@ -4326,7 +4326,7 @@ rl78_reorg (void)
if (dump_file) if (dump_file)
{ {
fprintf (dump_file, "\n================DEVIRT:=AFTER=PROPOGATION=============================\n"); fprintf (dump_file, "\n================DEVIRT:=AFTER=PROPOGATION=============================\n");
print_rtl_with_bb (dump_file, get_insns (), 0); print_rtl_with_bb (dump_file, get_insns (), TDF_NONE);
fprintf (dump_file, "\n======================================================================\n"); fprintf (dump_file, "\n======================================================================\n");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment