We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64f0f46 commit 63a5e71Copy full SHA for 63a5e71
mypyc/transform/log_trace.py
@@ -48,8 +48,7 @@ def visit_call(self, op: Call) -> Value:
48
return self.log(op, "call", op.fn.fullname)
49
50
def visit_primitive_op(self, op: PrimitiveOp) -> Value:
51
- self.log(op, "primitive_op", op.desc.name)
52
- return self.add(op)
+ return self.log(op, "primitive_op", op.desc.name)
53
54
def visit_call_c(self, op: CallC) -> Value:
55
if global_name := get_load_global_name(op):
0 commit comments