| 212 | bool operator!=(instruction_ref ref, const instruction& i) { return not(i == ref); } |
| 213 | |
| 214 | void instruction::add_output(instruction_ref ins) |
| 215 | { |
| 216 | if(std::find_if(output.begin(), output.end(), equal_to(ins)) == output.end()) |
| 217 | output.push_back(ins); |
| 218 | } |
| 219 | |
| 220 | void instruction::backreference(instruction_ref ref) |
| 221 | { |