|
@@ -305,8 +305,8 @@ class AnalysisState(object):
|
|
|
instruction_val, = yield [("RV", [instruction_id])]
|
|
|
instruction_val = instruction_val["value"]
|
|
|
if instruction_val in self.instruction_analyzers:
|
|
|
- gen = self.instruction_analyzers[instruction_val](self, instruction_id)
|
|
|
try:
|
|
|
+ gen = self.instruction_analyzers[instruction_val](self, instruction_id)
|
|
|
inp = None
|
|
|
while True:
|
|
|
inp = yield gen.send(inp)
|