diff options
author | Philip Herron <herron.philip@googlemail.com> | 2023-03-20 14:39:44 +0000 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-01-16 18:21:13 +0100 |
commit | 5130c17766bddac0ca8d60a92151b2817aa32ae1 (patch) | |
tree | fc8d109127687592ba142c974c5e50c8c606d8a2 | |
parent | 7d6ef248a975228885cdd32a6bb3cf513acccf5c (diff) | |
download | gcc-5130c17766bddac0ca8d60a92151b2817aa32ae1.zip gcc-5130c17766bddac0ca8d60a92151b2817aa32ae1.tar.gz gcc-5130c17766bddac0ca8d60a92151b2817aa32ae1.tar.bz2 |
gccrs: Cleanup unused headers
gcc/rust/ChangeLog:
* hir/rust-ast-lower-implitem.h (RUST_AST_LOWER_IMPLITEM_H): cleanup header usage
* hir/rust-ast-lower-item.cc: likewise
* hir/rust-ast-lower-item.h (RUST_AST_LOWER_ITEM): likewise
* hir/rust-ast-lower-stmt.cc: likewise
* hir/rust-ast-lower-stmt.h (RUST_AST_LOWER_STMT): likewise
* hir/rust-ast-lower-type.h: likewise
* hir/rust-ast-lower.cc: likewise
* hir/rust-ast-lower.h: likewise
* resolve/rust-ast-resolve-expr.h: likewise
* resolve/rust-ast-resolve-item.cc: likewise
* resolve/rust-ast-resolve-item.h: likewise
* resolve/rust-ast-resolve-stmt.cc: likewise
* resolve/rust-ast-resolve-stmt.h: likewise
* resolve/rust-ast-resolve-struct-expr-field.h: likewise
* resolve/rust-ast-resolve-toplevel.h: likewise
* resolve/rust-ast-resolve-type.h: likewise
* resolve/rust-ast-resolve.h: likewise
Signed-off-by: Philip Herron <herron.philip@googlemail.com>
-rw-r--r-- | gcc/rust/hir/rust-ast-lower-implitem.h | 2 | ||||
-rw-r--r-- | gcc/rust/hir/rust-ast-lower-item.cc | 9 | ||||
-rw-r--r-- | gcc/rust/hir/rust-ast-lower-item.h | 12 | ||||
-rw-r--r-- | gcc/rust/hir/rust-ast-lower-stmt.cc | 5 | ||||
-rw-r--r-- | gcc/rust/hir/rust-ast-lower-stmt.h | 7 | ||||
-rw-r--r-- | gcc/rust/hir/rust-ast-lower-type.h | 1 | ||||
-rw-r--r-- | gcc/rust/hir/rust-ast-lower.cc | 2 | ||||
-rw-r--r-- | gcc/rust/hir/rust-ast-lower.h | 5 | ||||
-rw-r--r-- | gcc/rust/resolve/rust-ast-resolve-expr.h | 1 | ||||
-rw-r--r-- | gcc/rust/resolve/rust-ast-resolve-item.cc | 4 | ||||
-rw-r--r-- | gcc/rust/resolve/rust-ast-resolve-item.h | 6 | ||||
-rw-r--r-- | gcc/rust/resolve/rust-ast-resolve-stmt.cc | 1 | ||||
-rw-r--r-- | gcc/rust/resolve/rust-ast-resolve-stmt.h | 1 | ||||
-rw-r--r-- | gcc/rust/resolve/rust-ast-resolve-struct-expr-field.h | 1 | ||||
-rw-r--r-- | gcc/rust/resolve/rust-ast-resolve-toplevel.h | 3 | ||||
-rw-r--r-- | gcc/rust/resolve/rust-ast-resolve-type.h | 1 | ||||
-rw-r--r-- | gcc/rust/resolve/rust-ast-resolve.h | 1 |
17 files changed, 23 insertions, 39 deletions
diff --git a/gcc/rust/hir/rust-ast-lower-implitem.h b/gcc/rust/hir/rust-ast-lower-implitem.h index afa1d93..7475e87 100644 --- a/gcc/rust/hir/rust-ast-lower-implitem.h +++ b/gcc/rust/hir/rust-ast-lower-implitem.h @@ -19,9 +19,7 @@ #ifndef RUST_AST_LOWER_IMPLITEM_H #define RUST_AST_LOWER_IMPLITEM_H -#include "rust-diagnostics.h" #include "rust-ast-lower-type.h" -#include "rust-ast-lower-stmt.h" #include "rust-ast-lower-expr.h" #include "rust-ast-lower-pattern.h" #include "rust-ast-lower-block.h" diff --git a/gcc/rust/hir/rust-ast-lower-item.cc b/gcc/rust/hir/rust-ast-lower-item.cc index 7b48549..b3eca52 100644 --- a/gcc/rust/hir/rust-ast-lower-item.cc +++ b/gcc/rust/hir/rust-ast-lower-item.cc @@ -17,6 +17,15 @@ // <http://www.gnu.org/licenses/>. #include "rust-ast-lower-item.h" +#include "rust-diagnostics.h" +#include "rust-ast-lower.h" +#include "rust-ast-lower-base.h" +#include "rust-ast-lower-enumitem.h" +#include "rust-ast-lower-type.h" +#include "rust-ast-lower-implitem.h" +#include "rust-ast-lower-expr.h" +#include "rust-ast-lower-pattern.h" +#include "rust-ast-lower-block.h" namespace Rust { namespace HIR { diff --git a/gcc/rust/hir/rust-ast-lower-item.h b/gcc/rust/hir/rust-ast-lower-item.h index 06a9627..24f7ba6 100644 --- a/gcc/rust/hir/rust-ast-lower-item.h +++ b/gcc/rust/hir/rust-ast-lower-item.h @@ -19,19 +19,7 @@ #ifndef RUST_AST_LOWER_ITEM #define RUST_AST_LOWER_ITEM -#include "rust-diagnostics.h" - -#include "rust-ast-lower.h" #include "rust-ast-lower-base.h" -#include "rust-ast-lower-enumitem.h" -#include "rust-ast-lower-type.h" -#include "rust-ast-lower-implitem.h" -#include "rust-ast-lower-stmt.h" -#include "rust-ast-lower-expr.h" -#include "rust-ast-lower-pattern.h" -#include "rust-ast-lower-block.h" -#include "rust-ast-lower-extern.h" -#include "rust-hir-full-decls.h" namespace Rust { namespace HIR { diff --git a/gcc/rust/hir/rust-ast-lower-stmt.cc b/gcc/rust/hir/rust-ast-lower-stmt.cc index 3d94259..dbff8ad 100644 --- a/gcc/rust/hir/rust-ast-lower-stmt.cc +++ b/gcc/rust/hir/rust-ast-lower-stmt.cc @@ -17,6 +17,11 @@ // <http://www.gnu.org/licenses/>. #include "rust-ast-lower-stmt.h" +#include "rust-ast-lower-enumitem.h" +#include "rust-ast-lower-type.h" +#include "rust-ast-lower-block.h" +#include "rust-ast-lower-expr.h" +#include "rust-ast-lower-pattern.h" namespace Rust { namespace HIR { diff --git a/gcc/rust/hir/rust-ast-lower-stmt.h b/gcc/rust/hir/rust-ast-lower-stmt.h index 2bb3513..5cc1770 100644 --- a/gcc/rust/hir/rust-ast-lower-stmt.h +++ b/gcc/rust/hir/rust-ast-lower-stmt.h @@ -19,14 +19,7 @@ #ifndef RUST_AST_LOWER_STMT #define RUST_AST_LOWER_STMT -#include "rust-diagnostics.h" - #include "rust-ast-lower-base.h" -#include "rust-ast-lower-enumitem.h" -#include "rust-ast-lower-type.h" -#include "rust-ast-lower-block.h" -#include "rust-ast-lower-expr.h" -#include "rust-ast-lower-pattern.h" namespace Rust { namespace HIR { diff --git a/gcc/rust/hir/rust-ast-lower-type.h b/gcc/rust/hir/rust-ast-lower-type.h index 296733b..5b17d8b 100644 --- a/gcc/rust/hir/rust-ast-lower-type.h +++ b/gcc/rust/hir/rust-ast-lower-type.h @@ -20,7 +20,6 @@ #define RUST_AST_LOWER_TYPE #include "rust-ast-lower-base.h" -#include "rust-diagnostics.h" #include "rust-ast-lower-expr.h" namespace Rust { diff --git a/gcc/rust/hir/rust-ast-lower.cc b/gcc/rust/hir/rust-ast-lower.cc index e3e6a21..e74b8be 100644 --- a/gcc/rust/hir/rust-ast-lower.cc +++ b/gcc/rust/hir/rust-ast-lower.cc @@ -18,7 +18,7 @@ #include "rust-ast-lower.h" #include "rust-ast-lower-item.h" -#include "rust-ast-lower-implitem.h" +#include "rust-ast-lower-stmt.h" #include "rust-ast-lower-expr.h" #include "rust-ast-lower-block.h" #include "rust-ast-lower-type.h" diff --git a/gcc/rust/hir/rust-ast-lower.h b/gcc/rust/hir/rust-ast-lower.h index 1184854..23730e0 100644 --- a/gcc/rust/hir/rust-ast-lower.h +++ b/gcc/rust/hir/rust-ast-lower.h @@ -20,9 +20,8 @@ #define RUST_HIR_LOWER #include "rust-system.h" -#include "rust-ast-full.h" -#include "rust-ast-visitor.h" -#include "rust-hir-full.h" +#include "rust-ast-full-decls.h" +#include "rust-hir-full-decls.h" namespace Rust { namespace HIR { diff --git a/gcc/rust/resolve/rust-ast-resolve-expr.h b/gcc/rust/resolve/rust-ast-resolve-expr.h index b3d9e0d..68b8462 100644 --- a/gcc/rust/resolve/rust-ast-resolve-expr.h +++ b/gcc/rust/resolve/rust-ast-resolve-expr.h @@ -21,7 +21,6 @@ #include "rust-ast-resolve-base.h" #include "rust-ast-resolve-pattern.h" -#include "rust-ast-full.h" namespace Rust { namespace Resolver { diff --git a/gcc/rust/resolve/rust-ast-resolve-item.cc b/gcc/rust/resolve/rust-ast-resolve-item.cc index d1ed210..4f3b924 100644 --- a/gcc/rust/resolve/rust-ast-resolve-item.cc +++ b/gcc/rust/resolve/rust-ast-resolve-item.cc @@ -17,7 +17,11 @@ // <http://www.gnu.org/licenses/>. #include "rust-ast-resolve-item.h" +#include "rust-ast-resolve-toplevel.h" +#include "rust-ast-resolve-type.h" +#include "rust-ast-resolve-pattern.h" #include "rust-ast-resolve-path.h" + #include "selftest.h" namespace Rust { diff --git a/gcc/rust/resolve/rust-ast-resolve-item.h b/gcc/rust/resolve/rust-ast-resolve-item.h index 8db3eb3..1246ad9 100644 --- a/gcc/rust/resolve/rust-ast-resolve-item.h +++ b/gcc/rust/resolve/rust-ast-resolve-item.h @@ -21,11 +21,7 @@ #include "rust-ast-full-decls.h" #include "rust-ast-resolve-base.h" -#include "rust-ast-full.h" -#include "rust-ast-resolve-toplevel.h" -#include "rust-ast-resolve-type.h" -#include "rust-ast-resolve-pattern.h" -#include "rust-ast-resolve-stmt.h" + #include "config.h" namespace Rust { diff --git a/gcc/rust/resolve/rust-ast-resolve-stmt.cc b/gcc/rust/resolve/rust-ast-resolve-stmt.cc index 84970f6..01e8484 100644 --- a/gcc/rust/resolve/rust-ast-resolve-stmt.cc +++ b/gcc/rust/resolve/rust-ast-resolve-stmt.cc @@ -18,6 +18,7 @@ #include "rust-ast-resolve-item.h" #include "rust-ast-resolve-stmt.h" +#include "rust-ast-resolve-implitem.h" namespace Rust { namespace Resolver { diff --git a/gcc/rust/resolve/rust-ast-resolve-stmt.h b/gcc/rust/resolve/rust-ast-resolve-stmt.h index 184ea3a..bec5805 100644 --- a/gcc/rust/resolve/rust-ast-resolve-stmt.h +++ b/gcc/rust/resolve/rust-ast-resolve-stmt.h @@ -20,7 +20,6 @@ #define RUST_AST_RESOLVE_STMT_H #include "rust-ast-resolve-base.h" -#include "rust-ast-full.h" #include "rust-ast-resolve-type.h" #include "rust-ast-resolve-pattern.h" #include "rust-ast-resolve-expr.h" diff --git a/gcc/rust/resolve/rust-ast-resolve-struct-expr-field.h b/gcc/rust/resolve/rust-ast-resolve-struct-expr-field.h index 603a411..67bb955 100644 --- a/gcc/rust/resolve/rust-ast-resolve-struct-expr-field.h +++ b/gcc/rust/resolve/rust-ast-resolve-struct-expr-field.h @@ -20,7 +20,6 @@ #define RUST_AST_RESOLVE_STRUCT_EXPR_FIELD #include "rust-ast-resolve-base.h" -#include "rust-ast-full.h" namespace Rust { namespace Resolver { diff --git a/gcc/rust/resolve/rust-ast-resolve-toplevel.h b/gcc/rust/resolve/rust-ast-resolve-toplevel.h index 5109d8f..9e2fb57 100644 --- a/gcc/rust/resolve/rust-ast-resolve-toplevel.h +++ b/gcc/rust/resolve/rust-ast-resolve-toplevel.h @@ -20,11 +20,8 @@ #define RUST_AST_RESOLVE_TOPLEVEL_H #include "rust-ast-resolve-base.h" -#include "rust-ast-resolve-type.h" #include "rust-ast-resolve-implitem.h" -#include "rust-ast-full.h" #include "rust-name-resolver.h" -#include "rust-session-manager.h" namespace Rust { namespace Resolver { diff --git a/gcc/rust/resolve/rust-ast-resolve-type.h b/gcc/rust/resolve/rust-ast-resolve-type.h index 04080d6..fd8307b 100644 --- a/gcc/rust/resolve/rust-ast-resolve-type.h +++ b/gcc/rust/resolve/rust-ast-resolve-type.h @@ -21,7 +21,6 @@ #include "rust-ast-resolve-base.h" #include "rust-ast-resolve-expr.h" -#include "rust-ast-full.h" namespace Rust { namespace Resolver { diff --git a/gcc/rust/resolve/rust-ast-resolve.h b/gcc/rust/resolve/rust-ast-resolve.h index aac357e..b2dbcba 100644 --- a/gcc/rust/resolve/rust-ast-resolve.h +++ b/gcc/rust/resolve/rust-ast-resolve.h @@ -20,7 +20,6 @@ #define RUST_AST_RESOLVE_H #include "rust-name-resolver.h" -#include "rust-ast-full.h" #include "rust-hir-map.h" namespace Rust { |