| 41 | } |
| 42 | |
| 43 | llvm::BasicBlock* NonWritableBasicBlock::CreateBasicBlockBefore( |
| 44 | llvm::LLVMContext& context, const std::string& name, llvm::Function* fn) const { |
| 45 | return llvm::BasicBlock::Create(context, name, fn, basic_block_); |
| 46 | } |
| 47 | |
| 48 | llvm::Value* CodegenAnyValReadWriteInfo::GetSimpleVal() const { |
| 49 | llvm::Value* const * val = std::get_if<llvm::Value*>(&data_); |
no test coverage detected