| 633 | } |
| 634 | |
| 635 | opt::Function* FindFunction(opt::IRContext* ir_context, uint32_t function_id) { |
| 636 | for (auto& function : *ir_context->module()) { |
| 637 | if (function.result_id() == function_id) { |
| 638 | return &function; |
| 639 | } |
| 640 | } |
| 641 | return nullptr; |
| 642 | } |
| 643 | |
| 644 | bool FunctionContainsOpKillOrUnreachable(const opt::Function& function) { |
| 645 | for (auto& block : function) { |
no test coverage detected