| 402 | Status Conditional::BuildArgumentNodes() { |
| 403 | VLOG(1) << "Build function arguments"; |
| 404 | struct Hash { |
| 405 | size_t operator()(const std::pair<Node*, int>& item) const { |
| 406 | return Hash64Combine(hash<Node*>()(item.first), |
| 407 | std::hash<int>()(item.second)); |
| 408 | } |
| 409 | }; |
| 410 | |
| 411 | std::unordered_map<std::pair<Node*, int>, int, Hash> input_index; |
| 412 | for (Node* switch_node : switches_) { |
no outgoing calls
no test coverage detected