(&mut self, value: ir::Value)
| 916 | |
| 917 | impl<'a> ir::instructions::InstructionMapper for InliningInstRemapper<'a> { |
| 918 | fn map_value(&mut self, value: ir::Value) -> ir::Value { |
| 919 | self.allocs.get_inlined_value(self.callee, value).expect( |
| 920 | "defs come before uses; we should have already inlined all values \ |
| 921 | used by an instruction", |
| 922 | ) |
| 923 | } |
| 924 | |
| 925 | fn map_value_list(&mut self, value_list: ir::ValueList) -> ir::ValueList { |
| 926 | let mut inlined_list = ir::ValueList::new(); |
no test coverage detected