diff options
author | tieway59 <tieway59@foxmail.com> | 2023-06-14 14:22:34 +0800 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-01-16 18:46:27 +0100 |
commit | b67124f2592096178c55ce6fbd2c522385c29c54 (patch) | |
tree | bcee9fae769dd5a11d6609cdf55b2f9a585331da /gcc/rust/rust-session-manager.h | |
parent | 77cd54e9dc3fae65d47d2f7c375c74cab362a0c9 (diff) | |
download | gcc-b67124f2592096178c55ce6fbd2c522385c29c54.zip gcc-b67124f2592096178c55ce6fbd2c522385c29c54.tar.gz gcc-b67124f2592096178c55ce6fbd2c522385c29c54.tar.bz2 |
gccrs: fixup: Remove old typecheck dump
fixes https://github.com/Rust-GCC/gccrs/issues/2020
gcc/rust/ChangeLog:
* typecheck/rust-tycheck-dump.h: Delete this file
* rust-session-manager.cc: Remove `Session::dump_type_resolution`
and `TYPE_RESOLUTION_DUMP`
* rust-session-manager.h: Likewise
Signed-off-by: Taiwei Wu tieway59@foxmail.com
Diffstat (limited to 'gcc/rust/rust-session-manager.h')
-rw-r--r-- | gcc/rust/rust-session-manager.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/rust/rust-session-manager.h b/gcc/rust/rust-session-manager.h index 99abb3c..92de61e 100644 --- a/gcc/rust/rust-session-manager.h +++ b/gcc/rust/rust-session-manager.h @@ -202,7 +202,6 @@ struct CompileOptions TARGET_OPTION_DUMP, HIR_DUMP, HIR_DUMP_PRETTY, - TYPE_RESOLUTION_DUMP, }; std::set<DumpOption> dump_options; @@ -261,7 +260,6 @@ struct CompileOptions enable_dump_option (DumpOption::TARGET_OPTION_DUMP); enable_dump_option (DumpOption::HIR_DUMP); enable_dump_option (DumpOption::HIR_DUMP_PRETTY); - enable_dump_option (DumpOption::TYPE_RESOLUTION_DUMP); } void set_crate_name (std::string name) @@ -373,7 +371,6 @@ private: void dump_tokenstream (AST::Crate &crate) const; void dump_hir (HIR::Crate &crate) const; void dump_hir_pretty (HIR::Crate &crate) const; - void dump_type_resolution (HIR::Crate &crate) const; // pipeline stages - TODO maybe move? /* Register plugins pipeline stage. TODO maybe move to another object? |