Revert "compiler: fix incorrect with behavior"

This reverts commit 86a6fe4606.
This commit is contained in:
Sebastien Bourdeauducq 2020-11-22 11:55:06 +08:00
parent 68582b8dfa
commit 9ae5e3c569
1 changed files with 2 additions and 1 deletions

View File

@ -855,7 +855,8 @@ 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()))
cleanup.append(lambda fn=exit_fn: self._user_call(fn, [none, none, none], {})) call = self._user_call(exit_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),