(mut self, data: InstructionData, ctrl_typevar: Type)
| 193 | } |
| 194 | |
| 195 | fn build(mut self, data: InstructionData, ctrl_typevar: Type) -> (Inst, &'f mut DataFlowGraph) { |
| 196 | let dfg = self.inserter.data_flow_graph_mut(); |
| 197 | let inst = dfg.make_inst(data); |
| 198 | dfg.make_inst_results(inst, ctrl_typevar); |
| 199 | (inst, self.inserter.insert_built_inst(inst)) |
| 200 | } |
| 201 | |
| 202 | fn build_aux_inst(&mut self, data: InstructionData, ctrl_typevar: Type) -> Inst { |
| 203 | let dfg = self.inserter.data_flow_graph_mut(); |
no test coverage detected