(reg, n)
| 325 | used_from_scope.add(dup) |
| 326 | |
| 327 | def write(reg, n): |
| 328 | if last_def[reg] != -1: |
| 329 | print('Warning: double write at register', reg) |
| 330 | print('\tline %d: %s' % (n, instr)) |
| 331 | print('\ttrace: %s' % format_trace(instr.caller, '\t\t')) |
| 332 | if options.stop: |
| 333 | sys.exit(1) |
| 334 | last_def[reg] = n |
| 335 | |
| 336 | for n,instr in enumerate(block.instructions): |
| 337 | outputs,inputs = instr.get_def(), instr.get_used() |
no test coverage detected