| 5895 | } |
| 5896 | |
| 5897 | Expected<std::unique_ptr<Module>> |
| 5898 | BitcodeModule::getLazyModule(LLVMContext &Context, bool ShouldLazyLoadMetadata, |
| 5899 | bool IsImporting) { |
| 5900 | return getModuleImpl(Context, false, ShouldLazyLoadMetadata, IsImporting); |
| 5901 | } |
| 5902 | |
| 5903 | // Parse the specified bitcode buffer and merge the index into CombinedIndex. |
| 5904 | // We don't use ModuleIdentifier here because the client may need to control the |
no outgoing calls
no test coverage detected