From f7084d487286e4c7ba2336b7fa567fc59def4c01 Mon Sep 17 00:00:00 2001 From: Arthur Cohen Date: Thu, 27 Jul 2023 10:06:13 +0200 Subject: gccrs: nr2.0: Add Early name resolution visitor This visitor takes care of resolving macro invocations, procedural macros and imports - it is used in conjunction with the `TopLevel` pass and the macro expander. gcc/rust/ChangeLog: * Make-lang.in: Add new object file. * resolve/rust-early-name-resolver-2.0.cc: New file. * resolve/rust-early-name-resolver-2.0.h: New file. --- gcc/rust/Make-lang.in | 1 + 1 file changed, 1 insertion(+) (limited to 'gcc/rust/Make-lang.in') diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in index da4135a..1df82f1 100644 --- a/gcc/rust/Make-lang.in +++ b/gcc/rust/Make-lang.in @@ -113,6 +113,7 @@ GRS_OBJS = \ rust/rust-name-resolution-context.o \ rust/rust-default-resolver.o \ rust/rust-toplevel-name-resolver-2.0.o \ + rust/rust-early-name-resolver-2.0.o \ rust/rust-early-name-resolver.o \ rust/rust-name-resolver.o \ rust/rust-ast-resolve.o \ -- cgit v1.1