Method
fabs32
(&mut self, dst: FReg, src: FReg)
Source from the content-addressed store, hash-verified
| 3710 | } |
| 3711 | |
| 3712 | fn fabs32(&mut self, dst: FReg, src: FReg) -> ControlFlow<Done> { |
| 3713 | let a = self.state[src].get_f32(); |
| 3714 | self.state[dst].set_f32(a.wasm_abs()); |
| 3715 | ControlFlow::Continue(()) |
| 3716 | } |
| 3717 | |
| 3718 | fn fadd64(&mut self, operands: BinaryOperands<FReg>) -> ControlFlow<Done> { |
| 3719 | let a = self.state[operands.src1].get_f64(); |
Callers
nothing calls this directly
Tested by
no test coverage detected