(instr: Instruction)
| 648 | } |
| 649 | |
| 650 | fn scalar_bin_op_32(instr: Instruction) -> Option<BinOp> { |
| 651 | int_bin_op_32(instr).or_else(|| float_bin_op_32(instr)) |
| 652 | } |
| 653 | |
| 654 | fn scalar_bin_op_64(instr: Instruction) -> Option<BinOp> { |
| 655 | int_bin_op_64(instr).or_else(|| float_bin_op_64(instr)) |
nothing calls this directly
no test coverage detected