(self, op: FloatComparisonOp)
| 470 | self.expect_float(op, op.src) |
| 471 | |
| 472 | def visit_float_comparison_op(self, op: FloatComparisonOp) -> None: |
| 473 | self.expect_float(op, op.lhs) |
| 474 | self.expect_float(op, op.rhs) |
| 475 | |
| 476 | def visit_load_mem(self, op: LoadMem) -> None: |
| 477 | pass |
nothing calls this directly
no test coverage detected