| 390 | namespace { |
| 391 | |
| 392 | inline bool IsBasicBlockSafeToClone(IRContext* context, BasicBlock* bb) { |
| 393 | for (Instruction& inst : *bb) { |
| 394 | if (!inst.IsBranch() && !context->IsCombinatorInstruction(&inst)) |
| 395 | return false; |
| 396 | } |
| 397 | |
| 398 | return true; |
| 399 | } |
| 400 | |
| 401 | } // namespace |
| 402 |
no test coverage detected