diff options
author | Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com> | 2023-05-02 16:02:55 +0200 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-01-16 18:37:17 +0100 |
commit | 82387cd8a0e70c9ab791ebccf26290907cf0d217 (patch) | |
tree | 155ac7f31eeacfb0c943c0f9886b31a45d571270 /gcc/rust/Make-lang.in | |
parent | 71249c646b77a73002ea9f1061c492c76ac5bda5 (diff) | |
download | gcc-82387cd8a0e70c9ab791ebccf26290907cf0d217.zip gcc-82387cd8a0e70c9ab791ebccf26290907cf0d217.tar.gz gcc-82387cd8a0e70c9ab791ebccf26290907cf0d217.tar.bz2 |
gccrs: ast: Rename rust-ast-tokenstream file
The file does not contain any TokenStream declaration anymore and thus
should be named more appropriately.
gcc/rust/ChangeLog:
* Make-lang.in: Change file name.
* ast/rust-ast-tokenstream.cc: Moved to...
* ast/rust-ast-collector.cc: ...here.
* ast/rust-ast-tokenstream.h: Moved to...
* ast/rust-ast-collector.h: ...here.
* rust-session-manager.cc: Change header name.
Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
Diffstat (limited to 'gcc/rust/Make-lang.in')
-rw-r--r-- | gcc/rust/Make-lang.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in index 8ef50b2..fdfc484 100644 --- a/gcc/rust/Make-lang.in +++ b/gcc/rust/Make-lang.in @@ -78,7 +78,7 @@ GRS_OBJS = \ rust/rust-pattern.o \ rust/rust-ast-fragment.o \ rust/rust-ast-dump.o \ - rust/rust-ast-tokenstream.o \ + rust/rust-ast-collector.o \ rust/rust-hir-dump.o \ rust/rust-session-manager.o \ rust/rust-compile.o \ |