(&mut self, data: InstructionData, ctrl_typevar: Type)
| 200 | } |
| 201 | |
| 202 | fn build_aux_inst(&mut self, data: InstructionData, ctrl_typevar: Type) -> Inst { |
| 203 | let dfg = self.inserter.data_flow_graph_mut(); |
| 204 | let inst = dfg.make_inst(data); |
| 205 | dfg.make_inst_results(inst, ctrl_typevar); |
| 206 | self.inserter.insert_aux_inst(inst); |
| 207 | inst |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | /// Builder that inserts a new instruction like `InsertBuilder`, but reusing result values. |
no test coverage detected