More COME_FROM's in Python 3...

Need this to find boundaries of simple if better
This commit is contained in:
rocky
2017-02-20 04:08:51 -05:00
parent 8ef5e5d12b
commit 9491c67779
4 changed files with 31 additions and 3 deletions

View File

@@ -893,6 +893,11 @@ class Scanner3(Scanner):
else:
self.fixed_jumps[offset] = rtarget
self.not_continue.add(pre_rtarget)
else:
# For now, we'll only tag forward jump.
if rtarget > offset:
self.fixed_jumps[offset] = rtarget
self.not_continue.add(pre_rtarget)
elif op == self.opc.SETUP_EXCEPT: