| 3387 | } |
| 3388 | |
| 3389 | Error BitcodeReader::parseBitcodeInto(Module *M, bool ShouldLazyLoadMetadata, |
| 3390 | bool IsImporting) { |
| 3391 | TheModule = M; |
| 3392 | MDLoader = MetadataLoader(Stream, *M, ValueList, IsImporting, |
| 3393 | [&](unsigned ID) { return getTypeByID(ID); }); |
| 3394 | return parseModule(0, ShouldLazyLoadMetadata); |
| 3395 | } |
| 3396 | |
| 3397 | Error BitcodeReader::typeCheckLoadStoreInst(Type *ValType, Type *PtrType) { |
| 3398 | if (!isa<PointerType>(PtrType)) |
no test coverage detected