(&mut self)
| 940 | } |
| 941 | |
| 942 | fn visit_f64_sqrt(&mut self) -> Self::Output { |
| 943 | self.context.unop(self.masm, |masm, reg| { |
| 944 | masm.float_sqrt(writable!(reg), reg, OperandSize::S64)?; |
| 945 | masm.maybe_canonicalize_nan(writable!(reg), OperandSize::S64)?; |
| 946 | Ok(TypedReg::f64(reg)) |
| 947 | }) |
| 948 | } |
| 949 | |
| 950 | fn visit_f32_eq(&mut self) -> Self::Output { |
| 951 | self.context.float_cmp_op( |
nothing calls this directly
no test coverage detected