diff options
author | Philip Herron <herron.philip@googlemail.com> | 2023-06-01 12:51:18 +0100 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-01-16 18:37:23 +0100 |
commit | d3d751cbac030902014856bbbd310a90b02912af (patch) | |
tree | 9af14dc6b2c2f25a87b2ebbf91297c134c33ecd7 /gcc/rust/Make-lang.in | |
parent | 0096df08e0d792880dbbb37dfb24f928183bab9c (diff) | |
download | gcc-d3d751cbac030902014856bbbd310a90b02912af.zip gcc-d3d751cbac030902014856bbbd310a90b02912af.tar.gz gcc-d3d751cbac030902014856bbbd310a90b02912af.tar.bz2 |
gccrs: get rid of useless helper class and fix header usage
gcc/rust/ChangeLog:
* Make-lang.in: remove files
* backend/rust-compile-block.h: fix headers
* backend/rust-compile-expr.h: likewise
* backend/rust-compile-fnparam.h: likewise
* backend/rust-compile-item.h: likewise
* backend/rust-compile-pattern.h: likewise
* backend/rust-compile-resolve-path.h: likewise
* backend/rust-compile-stmt.h: likewise
* typecheck/rust-autoderef.cc: likewise
* typecheck/rust-hir-path-probe.cc: likewise
* typecheck/rust-hir-path-probe.h: likewise
* typecheck/rust-hir-trait-reference.h: likewise
* typecheck/rust-hir-trait-resolve.cc: use a for loop instead
* typecheck/rust-hir-trait-resolve.h: fix headers
* typecheck/rust-hir-type-check-expr.h: likewise
* typecheck/rust-hir-type-check-implitem.h: likewise
* typecheck/rust-hir-type-check-item.h: likewise
* typecheck/rust-hir-type-check-path.cc: likewise
* typecheck/rust-hir-type-check-pattern.h: likewise
* typecheck/rust-hir-type-check-stmt.h: likewise
* typecheck/rust-hir-type-check-type.h: likewise
* typecheck/rust-hir-type-check-util.cc: Removed.
* typecheck/rust-hir-type-check-util.h: Removed.
Signed-off-by: Philip Herron <herron.philip@googlemail.com>
Diffstat (limited to 'gcc/rust/Make-lang.in')
-rw-r--r-- | gcc/rust/Make-lang.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in index 1d72c86..e708ac3 100644 --- a/gcc/rust/Make-lang.in +++ b/gcc/rust/Make-lang.in @@ -130,7 +130,6 @@ GRS_OBJS = \ rust/rust-tyty-subst.o \ rust/rust-typecheck-context.o \ rust/rust-tyty-bounds.o \ - rust/rust-hir-type-check-util.o \ rust/rust-hir-trait-resolve.o \ rust/rust-hir-trait-reference.o \ rust/rust-hir-type-check-item.o \ |