| 536 | } |
| 537 | |
| 538 | uint32_t ConstantManager::GetNullConstId(const Type* type) { |
| 539 | const Constant* c = GetConstant(type, {}); |
| 540 | return GetDefiningInstruction(c)->result_id(); |
| 541 | } |
| 542 | |
| 543 | const Constant* ConstantManager::GenerateIntegerConstant( |
| 544 | const analysis::Integer* integer_type, uint64_t result) { |
no test coverage detected