Explorar o código

More consistently use check_ir_id to initialize ValueStores (#6244)

David Blaikie hai 6 meses
pai
achega
af013e8d79
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      toolchain/sem_ir/file.cpp

+ 2 - 2
toolchain/sem_ir/file.cpp

@@ -40,12 +40,12 @@ File::File(const Parse::Tree* parse_tree, CheckIRId check_ir_id,
       classes_(check_ir_id),
       associated_constants_(check_ir_id),
       impls_(*this),
-      specific_interfaces_(check_ir_id_),
+      specific_interfaces_(check_ir_id),
       // The `+1` prevents adding a tag to the global `NameSpace::PackageInstId`
       // instruction. It's not a "singleton" instruction, but it's a unique
       // instruction id that comes right after the singletons.
       insts_(this, SingletonInstKinds.size() + 1),
-      vtables_(IdTag(check_ir_id.index, 0)),
+      vtables_(check_ir_id),
       constant_values_(ConstantId::NotConstant, &insts_),
       inst_blocks_(allocator_),
       constants_(this) {