| 1072 | } |
| 1073 | |
| 1074 | void SlotDescriptor::CodegenStoreNonNullAnyVal(CodegenAnyVal& any_val, |
| 1075 | llvm::Value* raw_val_ptr, llvm::Value* pool_val, |
| 1076 | const SlotDescriptor* slot_desc, const NonWritableBasicBlock& insert_before) { |
| 1077 | CodegenAnyValReadWriteInfo rwi = CodegenAnyValToReadWriteInfo(any_val, pool_val); |
| 1078 | CodegenStoreNonNullAnyVal(rwi, raw_val_ptr, pool_val, slot_desc, insert_before); |
| 1079 | } |
| 1080 | |
| 1081 | void SlotDescriptor::CodegenStoreNonNullAnyVal( |
| 1082 | const CodegenAnyValReadWriteInfo& read_write_info, llvm::Value* raw_val_ptr, |
nothing calls this directly
no test coverage detected