| 468 | } |
| 469 | |
| 470 | CondExecPred::NodeProp* CondExecPred::do_make_node_prop() const { |
| 471 | auto ret = Super::do_make_node_prop(); |
| 472 | for (auto&& i : ret->dep_map()) { |
| 473 | i.second = NodeProp::DepType::HOST_VALUE; |
| 474 | } |
| 475 | return ret; |
| 476 | } |
| 477 | |
| 478 | void CondExecPred::scn_do_execute() { |
| 479 | auto&& mgr = owner_graph()->static_infer_manager(); |
nothing calls this directly
no test coverage detected