1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-06-02 18:41:35 +00:00

Make tests pass.

This commit is contained in:
Chris Pressey 2018-04-25 13:40:39 +01:00
parent 76ec7224cd
commit 01e3ab00aa

View File

@ -420,6 +420,8 @@ class Analyzer(object):
self.analyze_for(instr, context)
elif isinstance(instr, WithInterruptsOff):
self.analyze_block(instr.block, context)
if context.encountered_gotos():
raise IllegalJumpError(instr, instr)
elif isinstance(instr, Save):
self.analyze_save(instr, context)
else:
@ -776,7 +778,8 @@ class Analyzer(object):
baton = context.extract(location)
self.analyze_block(instr.block, context)
# TODO assert no goto was encountered
if context.encountered_gotos():
raise IllegalJumpError(instr, instr)
context.re_introduce(baton)
if location == REG_A: