diff options
author | Jeff Law <law@redhat.com> | 2018-06-13 08:45:52 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2018-06-13 08:45:52 -0600 |
commit | 92877928f020d69de397e600052ceb1c9d22c5e8 (patch) | |
tree | f6fecf6e991d518b09b08b8584668d6a3006c7b5 /gcc/config/rl78 | |
parent | 0be606d3ce7b39148d0d0aed54bae3b4fe9478af (diff) | |
download | gcc-92877928f020d69de397e600052ceb1c9d22c5e8.zip gcc-92877928f020d69de397e600052ceb1c9d22c5e8.tar.gz gcc-92877928f020d69de397e600052ceb1c9d22c5e8.tar.bz2 |
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
Diffstat (limited to 'gcc/config/rl78')
-rw-r--r-- | gcc/config/rl78/rl78.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/rl78/rl78.c b/gcc/config/rl78/rl78.c index 8346c9c..03c78fc 100644 --- a/gcc/config/rl78/rl78.c +++ b/gcc/config/rl78/rl78.c @@ -228,7 +228,7 @@ move_elim_pass (void) } if (dump_file) - print_rtl_with_bb (dump_file, get_insns (), 0); + print_rtl_with_bb (dump_file, get_insns (), TDF_NONE); return 0; } @@ -4317,7 +4317,7 @@ rl78_reorg (void) if (dump_file) { 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 (); @@ -4326,7 +4326,7 @@ rl78_reorg (void) if (dump_file) { 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"); } |