| 478 | } |
| 479 | |
| 480 | static BlockList make_block_next(const Bytes &goal) |
| 481 | { |
| 482 | std::deque<Instruction> eaten; |
| 483 | BlockList list; |
| 484 | make_block(goal, 0, false, eaten, list); |
| 485 | return list; |
| 486 | } |
| 487 | |
| 488 | static Block make_block(const Instruction &instr) { |
| 489 | Block block(instr); |
no test coverage detected