diff options
author | Nobel Singh <nobel2073@gmail.com> | 2024-01-30 04:20:03 +0545 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-02-07 12:40:23 +0100 |
commit | 955f332446f5f4f2025020e07cd01e9727cbd032 (patch) | |
tree | 73c9543f5aebcfa46ec175d6b4bfc5d96b61ceab /gcc/rust/Make-lang.in | |
parent | c91248d1de2f83861a41b5f16d78b198d8a6bb44 (diff) | |
download | gcc-955f332446f5f4f2025020e07cd01e9727cbd032.zip gcc-955f332446f5f4f2025020e07cd01e9727cbd032.tar.gz gcc-955f332446f5f4f2025020e07cd01e9727cbd032.tar.bz2 |
gccrs: Move the Implementation of implitem lowering into its own file.
This patch moves the implementation of the implitem lowering
from rust-ast-lower-implitem.h into the rust-ast-lower-implitem.cc
file.
gcc/rust/ChangeLog:
* Make-lang.in: Add rust-ast-lower-implitem.cc to list of objects.
* hir/rust-ast-lower-implitem.h (RUST_AST_LOWER_IMPLITEM_H): Remove
implementation.
* hir/rust-ast-lower-implitem.cc: Copy implementation from header.
Signed-off-by: Nobel Singh <Nobel2073@gmail.com>
Diffstat (limited to 'gcc/rust/Make-lang.in')
-rw-r--r-- | gcc/rust/Make-lang.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in index bdaef41..4d64601 100644 --- a/gcc/rust/Make-lang.in +++ b/gcc/rust/Make-lang.in @@ -111,6 +111,7 @@ GRS_OBJS = \ rust/rust-ast-lower-base.o \ rust/rust-ast-lower-pattern.o \ rust/rust-ast-lower-item.o \ + rust/rust-ast-lower-implitem.o \ rust/rust-ast-lower-expr.o \ rust/rust-ast-lower-type.o \ rust/rust-ast-lower-stmt.o \ |