| 1078 | } |
| 1079 | |
| 1080 | void program::print( |
| 1081 | std::unordered_map<instruction_ref, std::string>& names, |
| 1082 | const std::function<void(instruction_ref, std::unordered_map<instruction_ref, std::string>)>& |
| 1083 | print_func) const |
| 1084 | { |
| 1085 | for(const auto& pp : this->impl->modules) |
| 1086 | { |
| 1087 | names = pp.second.print(print_func, names); |
| 1088 | } |
| 1089 | } |
| 1090 | |
| 1091 | void program::print( |
| 1092 | const std::function<void(instruction_ref ins, |
no outgoing calls
no test coverage detected