Commit a613396b authored by Robert Bradshaw's avatar Robert Bradshaw

Only need simple, don't need to force temp for bool binop nodes.

parent 307a66c2
...@@ -4862,8 +4862,8 @@ class BoolBinopNode(ExprNode): ...@@ -4862,8 +4862,8 @@ class BoolBinopNode(ExprNode):
# For what we're about to do, it's vital that # For what we're about to do, it's vital that
# both operands be temp nodes. # both operands be temp nodes.
self.operand1 = self.operand1.coerce_to_temp(env) self.operand1 = self.operand1.coerce_to_simple(env)
self.operand2 = self.operand2.coerce_to_temp(env) self.operand2 = self.operand2.coerce_to_simple(env)
self.is_temp = 1 self.is_temp = 1
gil_message = "Truth-testing Python object" gil_message = "Truth-testing Python object"
......
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