| 75 | } |
| 76 | |
| 77 | Pass::Status RelaxFloatOpsPass::ProcessImpl() { |
| 78 | Pass::ProcessFunction pfn = [this](Function* fp) { |
| 79 | return ProcessFunction(fp); |
| 80 | }; |
| 81 | bool modified = context()->ProcessReachableCallTree(pfn); |
| 82 | return modified ? Status::SuccessWithChange : Status::SuccessWithoutChange; |
| 83 | } |
| 84 | |
| 85 | Pass::Status RelaxFloatOpsPass::Process() { |
| 86 | Initialize(); |
nothing calls this directly
no test coverage detected