Append multiple stack map entries for the given call instruction. # Panics Panics if the given instruction is not a (non-tail) call instruction.
(
&mut self,
inst: Inst,
entries: impl IntoIterator<Item = UserStackMapEntry>,
)
| 624 | /// |
| 625 | /// Panics if the given instruction is not a (non-tail) call instruction. |
| 626 | pub fn append_user_stack_map_entries( |
| 627 | &mut self, |
| 628 | inst: Inst, |
| 629 | entries: impl IntoIterator<Item = UserStackMapEntry>, |
| 630 | ) { |
| 631 | for entry in entries { |
| 632 | self.append_user_stack_map_entry(inst, entry); |
| 633 | } |
| 634 | } |
| 635 | |
| 636 | /// Take the stack map entries for a given instruction, leaving the |
| 637 | /// instruction without stack maps. |
no test coverage detected