(&mut self, kind: IntCmpKind)
| 4598 | } |
| 4599 | |
| 4600 | fn cmp_i64s(&mut self, kind: IntCmpKind) -> Result<()> { |
| 4601 | self.context |
| 4602 | .i64_binop(self.masm, move |masm, dst, src, size| { |
| 4603 | masm.cmp_with_set(writable!(dst), src, kind, size)?; |
| 4604 | Ok(TypedReg::i32(dst)) // Return value for comparisons is an `i32`. |
| 4605 | }) |
| 4606 | } |
| 4607 | } |
| 4608 | |
| 4609 | impl TryFrom<WasmValType> for OperandSize { |
no test coverage detected