Take the stack map entries for a given instruction, leaving the instruction without stack maps.
(
&mut self,
inst: Inst,
)
| 636 | /// Take the stack map entries for a given instruction, leaving the |
| 637 | /// instruction without stack maps. |
| 638 | pub(crate) fn take_user_stack_map_entries( |
| 639 | &mut self, |
| 640 | inst: Inst, |
| 641 | ) -> Option<UserStackMapEntryVec> { |
| 642 | self.user_stack_maps.remove(&inst) |
| 643 | } |
| 644 | } |
| 645 | |
| 646 | /// Where did a value come from? |
no test coverage detected