Perform function call inlining. Returns `true` if any function call was inlined, `false` otherwise.
(&mut self, inliner: impl Inline)
| 193 | /// |
| 194 | /// Returns `true` if any function call was inlined, `false` otherwise. |
| 195 | pub fn inline(&mut self, inliner: impl Inline) -> CodegenResult<bool> { |
| 196 | do_inlining(&mut self.func, inliner) |
| 197 | } |
| 198 | |
| 199 | /// Compile the function, |
| 200 | /// |
nothing calls this directly
no test coverage detected