| 44 | } |
| 45 | |
| 46 | std::vector<instruction_ref> insert(const std::string& name, |
| 47 | module& m, |
| 48 | instruction_ref ins, |
| 49 | const std::vector<instruction_ref>& args, |
| 50 | const value& options) |
| 51 | { |
| 52 | return at(builder_map(), name, "Builder not found: " + name)(m, ins, args, {}, options); |
| 53 | } |
| 54 | |
| 55 | std::vector<instruction_ref> insert(const std::string& name, |
| 56 | module& m, |
no test coverage detected