| 160 | } |
| 161 | |
| 162 | static std::vector<instruction_ref> |
| 163 | insert_module_inline(module& m, instruction_ref ins, const module::with_inputs& mwi) |
| 164 | { |
| 165 | auto param_map = mwi.mod.get_ins_param_map(mwi.inputs, true); |
| 166 | return m.insert_instructions(ins, &mwi.mod, ¶m_map); |
| 167 | } |
| 168 | |
| 169 | static std::size_t get_reduce_size(const_module_ref rm) |
| 170 | { |
no test coverage detected