Commit 9d4f2851 authored by Vitja Makarov's avatar Vitja Makarov

Oops add rhs for SingleAssignmentNode

parent afe1b937
...@@ -576,7 +576,7 @@ class CreateControlFlowGraph(CythonTransform): ...@@ -576,7 +576,7 @@ class CreateControlFlowGraph(CythonTransform):
def visit_SingleAssignmentNode(self, node): def visit_SingleAssignmentNode(self, node):
self.visit(node.rhs) self.visit(node.rhs)
self.mark_assignment(node.lhs) self.mark_assignment(node.lhs, node.rhs)
return node return node
def visit_CascadedAssignmentNode(self, node): def visit_CascadedAssignmentNode(self, node):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment