(mut self, operands: Vec<Operand>)
| 173 | } |
| 174 | |
| 175 | pub fn operands_out(mut self, operands: Vec<Operand>) -> Self { |
| 176 | assert!(self.operands_out.is_none()); |
| 177 | self.operands_out = Some(operands); |
| 178 | self |
| 179 | } |
| 180 | |
| 181 | /// Mark this instruction as a block terminator. |
| 182 | pub fn terminates_block(mut self) -> Self { |
no outgoing calls
no test coverage detected