Has this instruction been sunk to a use-site (i.e., away from its original location)?
(&self, inst: Inst)
| 705 | /// Has this instruction been sunk to a use-site (i.e., away from its |
| 706 | /// original location)? |
| 707 | fn is_inst_sunk(&self, inst: Inst) -> bool { |
| 708 | self.inst_sunk.contains(&inst) |
| 709 | } |
| 710 | |
| 711 | // Is any result of this instruction needed? |
| 712 | fn is_any_inst_result_needed(&self, inst: Inst) -> bool { |
no test coverage detected