| 470 | } |
| 471 | |
| 472 | static BlockList make_block_prev(const Bytes &goal) |
| 473 | { |
| 474 | std::deque<Instruction> eaten; |
| 475 | BlockList list; |
| 476 | make_block(goal, 0, true, eaten, list); |
| 477 | return list; |
| 478 | } |
| 479 | |
| 480 | static BlockList make_block_next(const Bytes &goal) |
| 481 | { |
no test coverage detected