]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Add unit struct to name namespace in old resolver
authorPierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
Wed, 11 Dec 2024 14:12:00 +0000 (15:12 +0100)
committerP-E-P <32375388+P-E-P@users.noreply.github.com>
Wed, 29 Jan 2025 10:45:07 +0000 (10:45 +0000)
We missed the name namespace for unit struct in the old resolver.

gcc/rust/ChangeLog:

* resolve/rust-ast-resolve-toplevel.h: Add struct to name namespace.

Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
gcc/rust/resolve/rust-ast-resolve-toplevel.h

index ceac7edd341563d438fc32b374b312a9dfb2be11..491fa690eb509429f39c1b76263cfe92453ad2fc 100644 (file)
@@ -242,14 +242,21 @@ public:
     auto path = prefix.append (decl);
     auto cpath = canonical_prefix.append (decl);
 
-    resolver->get_type_scope ().insert (
-      path, struct_decl.get_node_id (), struct_decl.get_locus (), false,
-      Rib::ItemType::Type,
-      [&] (const CanonicalPath &, NodeId, location_t locus) -> void {
-       rich_location r (line_table, struct_decl.get_locus ());
-       r.add_range (locus);
-       rust_error_at (r, "redefined multiple times");
-      });
+    auto duplicate_item
+      = [&] (const CanonicalPath &, NodeId, location_t locus) -> void {
+      rich_location r (line_table, struct_decl.get_locus ());
+      r.add_range (locus);
+      rust_error_at (r, "redefined multiple times");
+    };
+
+    resolver->get_type_scope ().insert (path, struct_decl.get_node_id (),
+                                       struct_decl.get_locus (), false,
+                                       Rib::ItemType::Type, duplicate_item);
+
+    if (struct_decl.is_unit_struct ())
+      resolver->get_name_scope ().insert (path, struct_decl.get_node_id (),
+                                         struct_decl.get_locus (), false,
+                                         Rib::ItemType::Type, duplicate_item);
 
     NodeId current_module = resolver->peek_current_module_scope ();
     mappings.insert_module_child_item (current_module, decl);