| 376 | } |
| 377 | |
| 378 | void TaskNode::ConsumeRegst(const std::string& name) { |
| 379 | consumed_regsts_.emplace(name, std::list<std::shared_ptr<RegstDesc>>{}); |
| 380 | } |
| 381 | |
| 382 | void TaskNode::ConsumeRegst(const std::string& name, const std::shared_ptr<RegstDesc>& regst) { |
| 383 | regst->AddConsumer(this); |
no test coverage detected