Method
inline
(
&mut self,
caller: &ir::Function,
inst: ir::Inst,
opcode: ir::Opcode,
callee: ir::FuncRef,
args: &[ir::Value],
)
Source from the content-addressed store, hash-verified
| 94 | T: Inline, |
| 95 | { |
| 96 | fn inline( |
| 97 | &mut self, |
| 98 | caller: &ir::Function, |
| 99 | inst: ir::Inst, |
| 100 | opcode: ir::Opcode, |
| 101 | callee: ir::FuncRef, |
| 102 | args: &[ir::Value], |
| 103 | ) -> InlineCommand<'_> { |
| 104 | (*self).inline(caller, inst, opcode, callee, args) |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | /// Walk the given function, invoke the `Inline` implementation for each call |
Tested by
no test coverage detected