(&mut self, operands: &mut Vec<Self::Operand>)
| 1498 | } |
| 1499 | |
| 1500 | fn finish_block(&mut self, operands: &mut Vec<Self::Operand>) { |
| 1501 | let to_restore = self.block_storage.pop().expect("should have body"); |
| 1502 | let src = mem::replace(&mut self.body, to_restore); |
| 1503 | self.blocks.push((src, mem::take(operands))); |
| 1504 | } |
| 1505 | |
| 1506 | fn sizes(&self) -> &SizeAlign { |
| 1507 | self.sizes |
nothing calls this directly
no outgoing calls
no test coverage detected