Register a named module in this store.
| 80 | |
| 81 | /// Register a named module in this store. |
| 82 | Expect<void> registerModule(const Instance::ModuleInstance *ModInst) { |
| 83 | return registerModule(ModInst, ModInst->getModuleName()); |
| 84 | } |
| 85 | |
| 86 | /// Register a module instance in this store under the given alias name. |
| 87 | Expect<void> registerModule(const Instance::ModuleInstance *ModInst, |
nothing calls this directly
no test coverage detected