aboutsummaryrefslogtreecommitdiff
path: root/gcc/dumpfile.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@acm.org>2017-05-22 12:25:06 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2017-05-22 12:25:06 +0000
commit58aca9d95cbd0535a99a9642e2e997ea0fd30788 (patch)
treead8286ae024d6c89243ce9157d5befffd07d61d4 /gcc/dumpfile.c
parent6aea3c3720b89f43b3fd6553a8a70fa5fc26dd4b (diff)
downloadgcc-58aca9d95cbd0535a99a9642e2e997ea0fd30788.zip
gcc-58aca9d95cbd0535a99a9642e2e997ea0fd30788.tar.gz
gcc-58aca9d95cbd0535a99a9642e2e997ea0fd30788.tar.bz2
invoke.texi (fdump-translation-unit): Delete documentation.
gcc/ * doc/invoke.texi (fdump-translation-unit): Delete documentation. (fdump-lang): Document 'raw' option. * dumpfile.h (TDI_tu): Delete. * dumpfile.c (dump_files): Remove translation-unit. (FIRST_AUTO_NUMBERED_DUMP): Decrement. gcc/cp/ * cp-objcp-common.c (cp_register_dumps): Register raw dumper. * cp-tree.h (raw_dump_id): Declare. * decl2.c (raw_dump_id): Define. (dump_tu): Use raw_dump_id. gcc/c/ * c-decl.c (c_parse_final_cleanups): Drop TDI_tu handling. From-SVN: r248333
Diffstat (limited to 'gcc/dumpfile.c')
-rw-r--r--gcc/dumpfile.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/dumpfile.c b/gcc/dumpfile.c
index 45e47b2..13a7113 100644
--- a/gcc/dumpfile.c
+++ b/gcc/dumpfile.c
@@ -73,11 +73,10 @@ static struct dump_file_info dump_files[TDI_end] =
dump_file_info (".cgraph", "ipa-cgraph", DK_ipa, 0),
dump_file_info (".type-inheritance", "ipa-type-inheritance", DK_ipa, 0),
dump_file_info (".ipa-clones", "ipa-clones", DK_ipa, 0),
- dump_file_info (".tu", "translation-unit", DK_lang, 1),
dump_file_info (".original", "tree-original", DK_tree, 3),
dump_file_info (".gimple", "tree-gimple", DK_tree, 4),
dump_file_info (".nested", "tree-nested", DK_tree, 5),
-#define FIRST_AUTO_NUMBERED_DUMP 4
+#define FIRST_AUTO_NUMBERED_DUMP 3
dump_file_info (NULL, "lang-all", DK_lang, 0),
dump_file_info (NULL, "tree-all", DK_tree, 0),