diff options
author | Martin Liska <mliska@suse.cz> | 2017-05-18 16:23:46 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2017-05-18 14:23:46 +0000 |
commit | 8264c84d54602b4ced60ec0a969b58b2c9c5a944 (patch) | |
tree | 96265d1dfbd547ed2dbc558b16dd61ca13fc7362 /gcc/cfgrtl.c | |
parent | 671d5bcb262855ea7193f8349f38a15c388fcb6f (diff) | |
download | gcc-8264c84d54602b4ced60ec0a969b58b2c9c5a944.zip gcc-8264c84d54602b4ced60ec0a969b58b2c9c5a944.tar.gz gcc-8264c84d54602b4ced60ec0a969b58b2c9c5a944.tar.bz2 |
Transform TDF_{lang,tree,ipa,rtl} to dump_kind enum.
2017-05-18 Martin Liska <mliska@suse.cz>
* cfgrtl.c (rtl_verify_edges): Remove usage of TDF_RTL.
* dumpfile.c (dump_register): Use new enum dump_kind.
(get_dump_file_name): Likewise.
(dump_enable_all): Likewise.
(dump_switch_p_1): Likewise.
(enable_rtl_dump_file): Remove usage of TDF_RTL.
* dumpfile.h (enum dump_kind): New enum type.
(struct dump_file_info): Create constructor and
format fields and comments.
* passes.c (pass_manager::register_one_dump_file):
Use num dump_kind.
* statistics.c (statistics_early_init): Likewise.
* tree-ssa-loop-prefetch.c (dump_mem_details): Replace
TDF_TREE with TDF_SLIM.
(gather_memory_references_ref): Likewise.
From-SVN: r248206
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index ead82d2..aad0292 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -2527,7 +2527,7 @@ rtl_verify_edges (void) && JUMP_P (BB_END (bb)) && CROSSING_JUMP_P (BB_END (bb))) { - print_rtl_with_bb (stderr, get_insns (), TDF_RTL | TDF_BLOCKS | TDF_DETAILS); + print_rtl_with_bb (stderr, get_insns (), TDF_BLOCKS | TDF_DETAILS); error ("Region crossing jump across same section in bb %i", bb->index); err = 1; |