| 44 | } |
| 45 | |
| 46 | void PassManager::append(std::unique_ptr<IGraphMutator> pass, bool conditional) |
| 47 | { |
| 48 | if (pass && conditional) |
| 49 | { |
| 50 | ARM_COMPUTE_LOG_GRAPH_VERBOSE("Appending mutating pass : " << pass->name() << std::endl); |
| 51 | _passes.push_back(std::move(pass)); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | void PassManager::clear() |
| 56 | { |
no test coverage detected