diff options
author | Martin Liska <mliska@suse.cz> | 2017-05-26 16:45:59 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2017-05-26 14:45:59 +0000 |
commit | 9d9573d50901fed54d0d6404d0e96eaceff595ba (patch) | |
tree | b33f0e1b60f77c896c3606a32f60f305bb200053 /gcc/dumpfile.h | |
parent | f8d0706b24ff84eb0adfa161819e71a80f5a918a (diff) | |
download | gcc-9d9573d50901fed54d0d6404d0e96eaceff595ba.zip gcc-9d9573d50901fed54d0d6404d0e96eaceff595ba.tar.gz gcc-9d9573d50901fed54d0d6404d0e96eaceff595ba.tar.bz2 |
Simplify usage of some TDF_* flags.
2017-05-26 Martin Liska <mliska@suse.cz>
* cfg.c (check_bb_profile): Do not use TDF_COMMENT and print
always leading ';; '.
(dump_bb_info): Likewise.
(brief_dump_cfg): Likewise.
* cfgrtl.c (print_rtl_with_bb): Do not use TDF_COMMENT.
* dumpfile.c: Remove usage of TDF_VERBOSE.
* dumpfile.h (enum dump_kind): Likewise.
(dump_gimple_bb_header): Do not use TDF_COMMENT.
* print-tree.c (debug_verbose): Remove.
* tree-cfg.c (gimple_dump_cfg): Do not use TDF_COMMENT.
(dump_function_to_file): Remove dumps guarded with TDF_VERBOSE.
* tree-diagnostic.c (default_tree_printer): Replace
TDF_DIAGNOSTIC with TDF_SLIM.
From-SVN: r248514
Diffstat (limited to 'gcc/dumpfile.h')
-rw-r--r-- | gcc/dumpfile.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/dumpfile.h b/gcc/dumpfile.h index abb4d93..dc2d449 100644 --- a/gcc/dumpfile.h +++ b/gcc/dumpfile.h @@ -70,16 +70,12 @@ enum dump_kind #define TDF_LINENO (1 << 10) /* display statement line numbers */ #define TDF_UID (1 << 11) /* display decl UIDs */ -#define TDF_STMTADDR (1 << 12) /* Address of stmt. */ +#define TDF_STMTADDR (1 << 12) /* Address of stmt. */ #define TDF_GRAPH (1 << 13) /* a graph dump is being emitted */ #define TDF_MEMSYMS (1 << 14) /* display memory symbols in expr. Implies TDF_VOPS. */ -#define TDF_DIAGNOSTIC (1 << 15) /* A dump to be put in a diagnostic - message. */ -#define TDF_VERBOSE (1 << 16) /* A dump that uses the full tree - dumper to print stmts. */ #define TDF_RHS_ONLY (1 << 17) /* a flag to only print the RHS of a gimple stmt. */ #define TDF_ASMNAME (1 << 18) /* display asm names of decls */ @@ -90,7 +86,6 @@ enum dump_kind #define TDF_ENUMERATE_LOCALS (1 << 22) /* Enumerate locals by uid. */ #define TDF_CSELIB (1 << 23) /* Dump cselib details. */ #define TDF_SCEV (1 << 24) /* Dump SCEV details. */ -#define TDF_COMMENT (1 << 25) /* Dump lines with prefix ";;" */ #define TDF_GIMPLE (1 << 26) /* Dump in GIMPLE FE syntax */ #define TDF_FOLDING (1 << 27) /* Dump folding details. */ #define MSG_OPTIMIZED_LOCATIONS (1 << 27) /* -fopt-info optimized sources */ |