(&mut self)
| 726 | } |
| 727 | |
| 728 | fn visit_f64_max(&mut self) -> Self::Output { |
| 729 | self.context.binop( |
| 730 | self.masm, |
| 731 | OperandSize::S64, |
| 732 | &mut |masm: &mut M, dst, src, size| { |
| 733 | masm.float_max(writable!(dst), dst, src, size)?; |
| 734 | masm.maybe_canonicalize_nan(writable!(dst), size)?; |
| 735 | Ok(TypedReg::f64(dst)) |
| 736 | }, |
| 737 | ) |
| 738 | } |
| 739 | |
| 740 | fn visit_f32_copysign(&mut self) -> Self::Output { |
| 741 | self.context.binop( |
nothing calls this directly
no test coverage detected