| 99 | } |
| 100 | |
| 101 | bool IsMapped(uint32_t from) const { |
| 102 | assert(from != 0); |
| 103 | return from < id_map_.size() && id_map_[from] != 0; |
| 104 | } |
| 105 | |
| 106 | bool IsMapped(const opt::Instruction* from_inst) const { |
| 107 | assert(from_inst != nullptr); |
no test coverage detected