| 218 | BlockList next[max_size]; |
| 219 | |
| 220 | Block(const Instruction &in_goal) { |
| 221 | goal = in_goal; |
| 222 | is_sequence = false; |
| 223 | for (size_t i=0; i<max_size; i++) { |
| 224 | prefix[i] = false; |
| 225 | suffix[i] = false; |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | bool is_good(size_t idx) const { |
| 230 | if ((suffix[idx] || (prev[idx].size() > 0)) |
nothing calls this directly
no outgoing calls
no test coverage detected