| 84 | } |
| 85 | |
| 86 | uint32_t MappedId(uint32_t from) const { |
| 87 | assert(from != 0); |
| 88 | return from < id_map_.size() ? id_map_[from] : 0; |
| 89 | } |
| 90 | const opt::Instruction* MappedInst(const opt::Instruction* from_inst) const { |
| 91 | assert(from_inst != nullptr); |
| 92 | assert(!from_inst->HasResultId()); |
no test coverage detected