forked from M-Labs/artiq
compiler: fix incorrect with behavior
This commit is contained in:
parent
7f79a54255
commit
86a6fe4606
|
@ -855,8 +855,7 @@ class ARTIQIRGenerator(algorithm.Visitor):
|
||||||
self.current_assign = None
|
self.current_assign = None
|
||||||
|
|
||||||
none = self.append(ir.Alloc([], builtins.TNone()))
|
none = self.append(ir.Alloc([], builtins.TNone()))
|
||||||
call = self._user_call(exit_fn, [none, none, none], {})
|
cleanup.append(lambda fn=exit_fn: self._user_call(fn, [none, none, none], {}))
|
||||||
cleanup.append(lambda: call)
|
|
||||||
|
|
||||||
self._try_finally(
|
self._try_finally(
|
||||||
body_gen=lambda: self.visit(node.body),
|
body_gen=lambda: self.visit(node.body),
|
||||||
|
|
Loading…
Reference in New Issue